Run a simple experiment with Bluesky¶
This guide will walk you through the process of running a simple experiment using Blop, Bluesky, and Tiled. See https://blueskyproject.io/ for more information on the Bluesky ecosystem and how these tools work together.
Bluesky along with a data access backend (either Tiled or Databroker) are not necessary for using Blop, but are fully integrated into the package.
We’ll start by importing the necessary libraries.
import logging
import time
from typing import Any
from blop import DOF, Objective
from blop.ax import Agent
from blop.dofs import DOF
from blop.objectives import Objective
from bluesky.protocols import NamedMovable, Readable, Status, Hints, HasHints, HasParent
from bluesky.run_engine import RunEngine
from bluesky.callbacks.tiled_writer import TiledWriter
from bluesky.callbacks.best_effort import BestEffortCallback
from tiled.client import from_uri
from tiled.server import SimpleTiledServer
# Suppress noisy logs from httpx
logging.getLogger("httpx").setLevel(logging.WARNING)
[WARNING 10-13 20:43:40] ax.service.utils.with_db_settings_base: Ax currently requires a sqlalchemy version below 2.0. This will be addressed in a future release. Disabling SQL storage in Ax for now, if you would like to use SQL storage please install Ax with mysql extras via `pip install ax-platform[mysql]`.
First, we will start up a Tiled server. This will act as our data access service which Bluesky will write to and that Blop can read from.
tiled_server = SimpleTiledServer()
2025-10-13 20:43:44.236 INFO: Subprocess stdout:
2025-10-13 20:43:44.237 INFO: Subprocess stderr: Database sqlite+aiosqlite:////tmp/tmpmsh4bzqp/catalog.db is new. Creating tables.
Database initialized.
Tiled version 0.1.6
2025-10-13 20:43:44.555 INFO: Tiled version 0.1.6
2025-10-13 20:43:44.561 INFO: Context impl SQLiteImpl.
2025-10-13 20:43:44.562 INFO: Will assume non-transactional DDL.
Next, we’ll set up the Bluesky run engine and connect to the local Tiled server.
RE = RunEngine({})
tiled_client = from_uri(tiled_server.uri)
tiled_writer = TiledWriter(tiled_client)
RE.subscribe(tiled_writer)
bec = BestEffortCallback()
bec.disable_plots()
RE.subscribe(bec)
1
In order to control parameters and acquire data with Bluesky, we must follow the NamedMovable and Readable protocols. To do this, we implement a simple class that implements both protocols. An alternative to implementing these protocols yourself is to use Ophyd. The additional AlwaysSuccessfulStatus is necessary to tell the Bluesky RunEngine when a move is complete. For the purposes of this tutorial, every move is successful and complete immediately.
class AlwaysSuccessfulStatus(Status):
def add_callback(self, callback) -> None:
callback(self)
def exception(self, timeout = 0.0):
return None
@property
def done(self) -> bool:
return True
@property
def success(self) -> bool:
return True
class ReadableSignal(Readable, HasHints, HasParent):
def __init__(self, name: str) -> None:
self._name = name
self._value = 0.0
@property
def name(self) -> str:
return self._name
@property
def hints(self) -> Hints:
return {
"fields": [self._name],
"dimensions": [],
"gridding": "rectilinear",
}
@property
def parent(self) -> Any | None:
return None
def read(self):
return {
self._name: { "value": self._value, "timestamp": time.time() }
}
def describe(self):
return {
self._name: { "source": self._name, "dtype": "number", "shape": [] }
}
class MovableSignal(ReadableSignal, NamedMovable):
def __init__(self, name: str, initial_value: float = 0.0) -> None:
super().__init__(name)
self._value: float = initial_value
def set(self, value: float) -> Status:
self._value = value
return AlwaysSuccessfulStatus()
Next, we’ll define the DOFs and optimization objective. Since we can calculate our objective based on the two movable signals, there is no need to acquire data using an extra readable. With the movables already configured via the DOFs, it is implicitly added as a readable during the data acquisition.
x1 = MovableSignal("x1", initial_value=0.1)
x2 = MovableSignal("x2", initial_value=0.23)
dofs = [
DOF(movable=x1, search_domain=(-5, 5)),
DOF(movable=x2, search_domain=(-5, 5)),
]
objectives = [
Objective(name="himmelblau_2d", target="min"),
]
readables = []
Note
Additional readables are typically added as a list of devices that produce data, such as detectors, to help with computing the desired outcome via the digestion function.
Next, we will define the digestion function. The data that will be available to the digestion function will always be a collection of readables (specified either implicitly or explicitly).
def himmelblau_2d_digestion(trial_index: int, data: dict[str, Any]) -> float:
x1 = data["x1"][trial_index % len(data["x1"])]
x2 = data["x2"][trial_index % len(data["x2"])]
return {"himmelblau_2d": (x1 ** 2 + x2 - 11) ** 2 + (x1 + x2 ** 2 - 7) ** 2}
Next, we will setup the agent and perform the optimization using the run engine.
agent = Agent(readables=readables, dofs=dofs, objectives=objectives, db=tiled_client, digestion=himmelblau_2d_digestion)
agent.configure_experiment(name="simple_experiment", description="A simple experiment.")
RE(agent.learn(iterations=30))
Transient Scan ID: 1 Time: 2025-10-13 20:43:44
Persistent Unique Scan ID: '97bfdf9b-a77f-47c6-8e74-fabfd3af9e10'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:44.9 | 0.000 | 0.000 |
Found duckdb shared library at /home/runner/work/blop/blop/.pixi/envs/docs/lib/python3.12/site-packages/_duckdb.cpython-312-x86_64-linux-gnu.so
+-----------+------------+------------+------------+
generator list_scan ['97bfdf9b'] (scan num: 1)
Transient Scan ID: 2 Time: 2025-10-13 20:43:45
Persistent Unique Scan ID: '1c8bc22b-f88b-46db-bd53-786a864f7cce'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:45.5 | 3.177 | -0.788 |
+-----------+------------+------------+------------+
generator list_scan ['1c8bc22b'] (scan num: 2)
Transient Scan ID: 3 Time: 2025-10-13 20:43:45
Persistent Unique Scan ID: '40771756-2330-41dd-95cf-3e70a0e648fe'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:45.9 | -3.449 | 1.410 |
+-----------+------------+------------+------------+
generator list_scan ['40771756'] (scan num: 3)
Transient Scan ID: 4 Time: 2025-10-13 20:43:46
Persistent Unique Scan ID: '2b7bcf77-7fe3-4929-b101-75efb509dc3e'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:46.3 | -1.653 | -3.321 |
+-----------+------------+------------+------------+
generator list_scan ['2b7bcf77'] (scan num: 4)
Transient Scan ID: 5 Time: 2025-10-13 20:43:46
Persistent Unique Scan ID: 'c27cb429-5dbf-441f-9f43-dad384adce66'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:46.7 | 1.379 | 3.953 |
+-----------+------------+------------+------------+
generator list_scan ['c27cb429'] (scan num: 5)
Transient Scan ID: 6 Time: 2025-10-13 20:43:47
Persistent Unique Scan ID: '3a329da2-e499-409e-b949-2915f46299de'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:47.8 | 4.494 | -3.031 |
+-----------+------------+------------+------------+
generator list_scan ['3a329da2'] (scan num: 6)
Transient Scan ID: 7 Time: 2025-10-13 20:43:48
Persistent Unique Scan ID: '2676318d-3a54-4966-bdb9-ccbc2f5249e8'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:48.9 | 2.792 | -3.386 |
+-----------+------------+------------+------------+
generator list_scan ['2676318d'] (scan num: 7)
Transient Scan ID: 8 Time: 2025-10-13 20:43:49
Persistent Unique Scan ID: '71e226bc-277b-433c-90b6-89a3aa37be7c'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:50.0 | 3.749 | -0.131 |
+-----------+------------+------------+------------+
generator list_scan ['71e226bc'] (scan num: 8)
Transient Scan ID: 9 Time: 2025-10-13 20:43:51
Persistent Unique Scan ID: 'e3ff8aa2-b01f-4f3c-97b8-454194711556'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:51.2 | 3.026 | 0.290 |
+-----------+------------+------------+------------+
generator list_scan ['e3ff8aa2'] (scan num: 9)
Transient Scan ID: 10 Time: 2025-10-13 20:43:52
Persistent Unique Scan ID: '7ca89132-2472-4725-827d-6b77e1396ef0'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:52.3 | 3.304 | -0.285 |
+-----------+------------+------------+------------+
generator list_scan ['7ca89132'] (scan num: 10)
Transient Scan ID: 11 Time: 2025-10-13 20:43:53
Persistent Unique Scan ID: '04166aa7-c484-48b0-a0bf-3cf1d48db8ef'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:53.5 | -5.000 | 4.621 |
+-----------+------------+------------+------------+
generator list_scan ['04166aa7'] (scan num: 11)
Transient Scan ID: 12 Time: 2025-10-13 20:43:54
Persistent Unique Scan ID: '9758215b-b40d-413d-a780-77ed8da59cf5'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:54.5 | -2.245 | 1.809 |
+-----------+------------+------------+------------+
generator list_scan ['9758215b'] (scan num: 12)
Transient Scan ID: 13 Time: 2025-10-13 20:43:55
Persistent Unique Scan ID: '935c94de-0c8c-4d27-af56-18831867d8f7'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:55.5 | -3.251 | -1.285 |
+-----------+------------+------------+------------+
generator list_scan ['935c94de'] (scan num: 13)
Transient Scan ID: 14 Time: 2025-10-13 20:43:56
Persistent Unique Scan ID: '4b09dc74-417c-4423-b2a5-b86bf4f6081e'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:56.7 | 3.232 | 3.762 |
+-----------+------------+------------+------------+
generator list_scan ['4b09dc74'] (scan num: 14)
Transient Scan ID: 15 Time: 2025-10-13 20:43:57
Persistent Unique Scan ID: 'a7b109d1-02c8-48bf-bde3-c1958d7a1b9b'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:57.7 | -1.508 | 5.000 |
+-----------+------------+------------+------------+
generator list_scan ['a7b109d1'] (scan num: 15)
Transient Scan ID: 16 Time: 2025-10-13 20:43:58
Persistent Unique Scan ID: '8ea7aa3e-ea06-4619-aeae-9f891f5652e1'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:58.7 | -2.484 | 0.285 |
+-----------+------------+------------+------------+
generator list_scan ['8ea7aa3e'] (scan num: 16)
Transient Scan ID: 17 Time: 2025-10-13 20:43:59
Persistent Unique Scan ID: '3a7e7869-df99-46ec-bf23-a2c410c228bb'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:43:59.7 | -5.000 | -2.513 |
+-----------+------------+------------+------------+
generator list_scan ['3a7e7869'] (scan num: 17)
Transient Scan ID: 18 Time: 2025-10-13 20:44:00
Persistent Unique Scan ID: 'd415eca5-b94c-48e7-adbd-5f0d1162dc91'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:00.8 | 1.785 | 2.037 |
+-----------+------------+------------+------------+
generator list_scan ['d415eca5'] (scan num: 18)
Transient Scan ID: 19 Time: 2025-10-13 20:44:01
Persistent Unique Scan ID: '60eeb11b-a7bb-4def-806e-bf31021eb832'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:01.8 | 3.773 | 1.545 |
+-----------+------------+------------+------------+
generator list_scan ['60eeb11b'] (scan num: 19)
Transient Scan ID: 20 Time: 2025-10-13 20:44:03
Persistent Unique Scan ID: '7cc133d5-a7da-44fb-9001-25c9002ec04a'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:03.1 | 3.708 | -1.442 |
+-----------+------------+------------+------------+
generator list_scan ['7cc133d5'] (scan num: 20)
Transient Scan ID: 21 Time: 2025-10-13 20:44:04
Persistent Unique Scan ID: '7307217a-5843-433b-92c0-55a35950a53a'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:04.2 | 3.149 | -1.657 |
+-----------+------------+------------+------------+
generator list_scan ['7307217a'] (scan num: 21)
Transient Scan ID: 22 Time: 2025-10-13 20:44:05
Persistent Unique Scan ID: 'd63f8eea-d2ae-4a93-896f-895a5e8e8420'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:05.4 | -5.000 | -0.347 |
+-----------+------------+------------+------------+
generator list_scan ['d63f8eea'] (scan num: 22)
Transient Scan ID: 23 Time: 2025-10-13 20:44:06
Persistent Unique Scan ID: '902d022d-6248-4c8d-a6cb-e8fe7e71a0f4'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:06.5 | 2.889 | 1.569 |
+-----------+------------+------------+------------+
generator list_scan ['902d022d'] (scan num: 23)
Transient Scan ID: 24 Time: 2025-10-13 20:44:07
Persistent Unique Scan ID: '6bbed3cf-141a-49e1-8732-7e860f7e7972'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:07.6 | -5.000 | -5.000 |
+-----------+------------+------------+------------+
generator list_scan ['6bbed3cf'] (scan num: 24)
Transient Scan ID: 25 Time: 2025-10-13 20:44:08
Persistent Unique Scan ID: 'e1665c32-a1d1-4511-aba4-f797b68218ed'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:08.8 | -2.023 | -1.853 |
+-----------+------------+------------+------------+
generator list_scan ['e1665c32'] (scan num: 25)
Transient Scan ID: 26 Time: 2025-10-13 20:44:09
Persistent Unique Scan ID: '035637f2-b13c-4954-b911-b837dbd8a4c8'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:09.9 | -3.316 | -2.860 |
+-----------+------------+------------+------------+
generator list_scan ['035637f2'] (scan num: 26)
Transient Scan ID: 27 Time: 2025-10-13 20:44:11
Persistent Unique Scan ID: '1e116bee-925d-4ac3-b082-136d37f8f591'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:11.0 | 5.000 | -1.198 |
+-----------+------------+------------+------------+
generator list_scan ['1e116bee'] (scan num: 27)
Transient Scan ID: 28 Time: 2025-10-13 20:44:12
Persistent Unique Scan ID: '854fb52a-02cb-43f2-91b2-4a2425254e0d'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:12.1 | 3.514 | -1.797 |
+-----------+------------+------------+------------+
generator list_scan ['854fb52a'] (scan num: 28)
Transient Scan ID: 29 Time: 2025-10-13 20:44:13
Persistent Unique Scan ID: '6b8dee97-6023-47f8-a447-f6ec2c11f742'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:13.4 | -0.117 | 2.376 |
+-----------+------------+------------+------------+
generator list_scan ['6b8dee97'] (scan num: 29)
Transient Scan ID: 30 Time: 2025-10-13 20:44:14
Persistent Unique Scan ID: '292dce28-2eee-4cc8-beb4-399eb7b87463'
New stream: 'primary'
+-----------+------------+------------+------------+
| seq_num | time | x1 | x2 |
+-----------+------------+------------+------------+
| 1 | 20:44:14.9 | 3.188 | 1.312 |
+-----------+------------+------------+------------+
generator list_scan ['292dce28'] (scan num: 30)
2025-10-13 20:43:44.829 INFO: Configuring optimization with objective: -himmelblau_2d and outcome constraints: []
2025-10-13 20:43:44.851 INFO: Executing plan <generator object Agent.learn at 0x7fdfe1ac2b40>
2025-10-13 20:43:44.853 INFO: Change state on <bluesky.run_engine.RunEngine object at 0x7fdfe70ca690> from 'idle' -> 'running'
2025-10-13 20:44:15.265 INFO: Change state on <bluesky.run_engine.RunEngine object at 0x7fdfe70ca690> from 'running' -> 'idle'
2025-10-13 20:44:15.266 INFO: Cleaned up from plan <generator object Agent.learn at 0x7fdfe1ac2b40>
('97bfdf9b-a77f-47c6-8e74-fabfd3af9e10',
'1c8bc22b-f88b-46db-bd53-786a864f7cce',
'40771756-2330-41dd-95cf-3e70a0e648fe',
'2b7bcf77-7fe3-4929-b101-75efb509dc3e',
'c27cb429-5dbf-441f-9f43-dad384adce66',
'3a329da2-e499-409e-b949-2915f46299de',
'2676318d-3a54-4966-bdb9-ccbc2f5249e8',
'71e226bc-277b-433c-90b6-89a3aa37be7c',
'e3ff8aa2-b01f-4f3c-97b8-454194711556',
'7ca89132-2472-4725-827d-6b77e1396ef0',
'04166aa7-c484-48b0-a0bf-3cf1d48db8ef',
'9758215b-b40d-413d-a780-77ed8da59cf5',
'935c94de-0c8c-4d27-af56-18831867d8f7',
'4b09dc74-417c-4423-b2a5-b86bf4f6081e',
'a7b109d1-02c8-48bf-bde3-c1958d7a1b9b',
'8ea7aa3e-ea06-4619-aeae-9f891f5652e1',
'3a7e7869-df99-46ec-bf23-a2c410c228bb',
'd415eca5-b94c-48e7-adbd-5f0d1162dc91',
'60eeb11b-a7bb-4def-806e-bf31021eb832',
'7cc133d5-a7da-44fb-9001-25c9002ec04a',
'7307217a-5843-433b-92c0-55a35950a53a',
'd63f8eea-d2ae-4a93-896f-895a5e8e8420',
'902d022d-6248-4c8d-a6cb-e8fe7e71a0f4',
'6bbed3cf-141a-49e1-8732-7e860f7e7972',
'e1665c32-a1d1-4511-aba4-f797b68218ed',
'035637f2-b13c-4954-b911-b837dbd8a4c8',
'1e116bee-925d-4ac3-b082-136d37f8f591',
'854fb52a-02cb-43f2-91b2-4a2425254e0d',
'6b8dee97-6023-47f8-a447-f6ec2c11f742',
'292dce28-2eee-4cc8-beb4-399eb7b87463')
Now we can view the results.
agent.plot_objective("x1", "x2", "himmelblau_2d")
agent.summarize()
The contour plot visualizes the predicted outcomes for himmelblau_2d across a two-dimensional parameter space, with other parameters held fixed at their status_quo value (or mean value if status_quo is unavailable). This plot helps in identifying regions of optimal performance and understanding how changes in the selected parameters influence the predicted outcomes. Contour lines represent levels of constant predicted values, providing insights into the gradient and potential optima within the parameter space.
| trial_index | arm_name | trial_status | generation_node | himmelblau_2d | x1 | x2 | |
|---|---|---|---|---|---|---|---|
| 0 | 0 | 0_0 | COMPLETED | CenterOfSearchSpace | 170.000000 | 0.000000 | 0.000000 |
| 1 | 1 | 1_0 | COMPLETED | Sobol | 13.120153 | 3.177135 | -0.788171 |
| 2 | 2 | 2_0 | COMPLETED | Sobol | 76.888449 | -3.448704 | 1.409995 |
| 3 | 3 | 3_0 | COMPLETED | Sobol | 139.941372 | -1.653189 | -3.321287 |
| 4 | 4 | 4_0 | COMPLETED | Sobol | 126.607343 | 1.379179 | 3.953202 |
| 5 | 5 | 5_0 | COMPLETED | MBM | 82.608778 | 4.493674 | -3.031092 |
| 6 | 6 | 6_0 | COMPLETED | MBM | 96.098902 | 2.792081 | -3.386017 |
| 7 | 7 | 7_0 | COMPLETED | MBM | 19.004590 | 3.748896 | -0.130870 |
| 8 | 8 | 8_0 | COMPLETED | MBM | 17.555493 | 3.025637 | 0.289777 |
| 9 | 9 | 9_0 | COMPLETED | MBM | 13.201341 | 3.304027 | -0.285233 |
| 10 | 10 | 10_0 | COMPLETED | MBM | 434.159752 | -5.000000 | 4.620655 |
| 11 | 11 | 11_0 | COMPLETED | MBM | 52.897810 | -2.244744 | 1.809199 |
| 12 | 12 | 12_0 | COMPLETED | MBM | 76.915950 | -3.251438 | -1.284573 |
| 13 | 13 | 13_0 | COMPLETED | MBM | 118.179073 | 3.231753 | 3.762390 |
| 14 | 14 | 14_0 | COMPLETED | MBM | 285.862504 | -1.508111 | 5.000000 |
| 15 | 15 | 15_0 | COMPLETED | MBM | 109.063974 | -2.484219 | 0.284855 |
| 16 | 16 | 16_0 | COMPLETED | MBM | 164.241363 | -5.000000 | -2.513338 |
| 17 | 17 | 17_0 | COMPLETED | MBM | 34.510306 | 1.784848 | 2.037149 |
| 18 | 18 | 18_0 | COMPLETED | MBM | 23.546853 | 3.772845 | 1.544711 |
| 19 | 19 | 19_0 | COMPLETED | MBM | 3.169853 | 3.707699 | -1.442466 |
| 20 | 20 | 20_0 | COMPLETED | MBM | 8.742831 | 3.148746 | -1.657156 |
| 21 | 21 | 21_0 | COMPLETED | MBM | 327.514522 | -5.000000 | -0.347333 |
| 22 | 22 | 22_0 | COMPLETED | MBM | 3.905031 | 2.888605 | 1.568820 |
| 23 | 23 | 23_0 | COMPLETED | MBM | 250.000000 | -5.000000 | -5.000000 |
| 24 | 24 | 24_0 | COMPLETED | MBM | 107.967405 | -2.023245 | -1.853213 |
| 25 | 25 | 25_0 | COMPLETED | MBM | 12.779378 | -3.315806 | -2.859717 |
| 26 | 26 | 26_0 | COMPLETED | MBM | 164.198577 | 5.000000 | -1.198411 |
| 27 | 27 | 27_0 | COMPLETED | MBM | 0.266033 | 3.514237 | -1.796708 |
| 28 | 28 | 28_0 | COMPLETED | MBM | 76.293047 | -0.117288 | 2.376313 |
| 29 | 29 | 29_0 | COMPLETED | MBM | 4.598770 | 3.187569 | 1.311723 |