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 11-06 21:30:18] 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-11-06 21:30:22.474 INFO: Subprocess stdout:
2025-11-06 21:30:22.475 INFO: Subprocess stderr: Database sqlite+aiosqlite:////tmp/tmpgiodlkrt/catalog.db is new. Creating tables.
Database initialized.
Tiled version 0.2.0
2025-11-06 21:30:22.816 INFO: Tiled version 0.2.0
2025-11-06 21:30:22.822 INFO: Context impl SQLiteImpl.
2025-11-06 21:30:22.823 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-11-06 21:30:23
Persistent Unique Scan ID: '2c3dc953-3162-4aa1-85e7-bf2a97683fc1'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:23.1 |      0.000 |      0.000 |
+-----------+------------+------------+------------+
generator list_scan ['2c3dc953'] (scan num: 1)


Transient Scan ID: 2     Time: 2025-11-06 21:30:23
Persistent Unique Scan ID: 'df3dfcb0-a855-4f62-bf61-839b73aba718'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:23.7 |     -4.874 |     -4.662 |
+-----------+------------+------------+------------+
generator list_scan ['df3dfcb0'] (scan num: 2)


Transient Scan ID: 3     Time: 2025-11-06 21:30:24
Persistent Unique Scan ID: 'c4b9910b-efd0-49f9-b21f-51994e148a55'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:24.1 |      1.666 |      2.934 |
+-----------+------------+------------+------------+
generator list_scan ['c4b9910b'] (scan num: 3)


Transient Scan ID: 4     Time: 2025-11-06 21:30:24
Persistent Unique Scan ID: '157c4230-ec15-4e7e-8e7b-de785501c6a5'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:24.4 |      3.575 |     -0.485 |
+-----------+------------+------------+------------+
generator list_scan ['157c4230'] (scan num: 4)


Transient Scan ID: 5     Time: 2025-11-06 21:30:24
Persistent Unique Scan ID: '1d7b34b4-30c2-4939-8079-d15990715249'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:24.8 |     -0.542 |      1.882 |
+-----------+------------+------------+------------+
generator list_scan ['1d7b34b4'] (scan num: 5)


Transient Scan ID: 6     Time: 2025-11-06 21:30:25
Persistent Unique Scan ID: '6b8e7bd7-2ca5-434f-a2f2-d920df5bf272'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:26.0 |      3.675 |      1.073 |
+-----------+------------+------------+------------+
generator list_scan ['6b8e7bd7'] (scan num: 6)


Transient Scan ID: 7     Time: 2025-11-06 21:30:27
Persistent Unique Scan ID: '90b016c0-fdb0-422d-a1ec-131a6c719791'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:27.0 |      4.920 |     -0.696 |
+-----------+------------+------------+------------+
generator list_scan ['90b016c0'] (scan num: 7)


Transient Scan ID: 8     Time: 2025-11-06 21:30:28
Persistent Unique Scan ID: '5f4f7561-1eaf-41b7-b604-698d5f3572ac'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:28.8 |      3.224 |      3.708 |
+-----------+------------+------------+------------+
generator list_scan ['5f4f7561'] (scan num: 8)


Transient Scan ID: 9     Time: 2025-11-06 21:30:30
Persistent Unique Scan ID: 'a2f8d6b4-d445-4a68-911e-52abfd9b7803'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:30.7 |      3.809 |     -1.845 |
+-----------+------------+------------+------------+
generator list_scan ['a2f8d6b4'] (scan num: 9)


Transient Scan ID: 10     Time: 2025-11-06 21:30:32
Persistent Unique Scan ID: '0f0c13f9-848b-40fc-8832-cd3be0264245'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:32.2 |      3.623 |     -5.000 |
+-----------+------------+------------+------------+
generator list_scan ['0f0c13f9'] (scan num: 10)


Transient Scan ID: 11     Time: 2025-11-06 21:30:33
Persistent Unique Scan ID: '0282a300-59ff-4d7e-87cf-549c8596325d'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:33.4 |      2.805 |     -1.468 |
+-----------+------------+------------+------------+
generator list_scan ['0282a300'] (scan num: 11)


Transient Scan ID: 12     Time: 2025-11-06 21:30:34
Persistent Unique Scan ID: '9acbf3b6-0068-4a0d-b17c-c62ad813f135'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:34.6 |      2.490 |      1.318 |
+-----------+------------+------------+------------+
generator list_scan ['9acbf3b6'] (scan num: 12)


Transient Scan ID: 13     Time: 2025-11-06 21:30:35
Persistent Unique Scan ID: '3f4bd732-8d4a-4913-94d9-4dba29b50ebb'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:35.9 |     -0.010 |      4.108 |
+-----------+------------+------------+------------+
generator list_scan ['3f4bd732'] (scan num: 13)


Transient Scan ID: 14     Time: 2025-11-06 21:30:36
Persistent Unique Scan ID: 'c691f56e-b4cc-4254-ae69-67e6ea0789ac'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:37.0 |      3.056 |      2.023 |
+-----------+------------+------------+------------+
generator list_scan ['c691f56e'] (scan num: 14)


Transient Scan ID: 15     Time: 2025-11-06 21:30:38
Persistent Unique Scan ID: 'f890aad1-8379-4eaf-a9b5-efc30d041f33'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:38.1 |      3.470 |     -1.386 |
+-----------+------------+------------+------------+
generator list_scan ['f890aad1'] (scan num: 15)


Transient Scan ID: 16     Time: 2025-11-06 21:30:39
Persistent Unique Scan ID: 'becbbcbf-1dc9-47c8-a0d6-2977b9b88519'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:39.2 |     -3.169 |      1.406 |
+-----------+------------+------------+------------+
generator list_scan ['becbbcbf'] (scan num: 16)


Transient Scan ID: 17     Time: 2025-11-06 21:30:40
Persistent Unique Scan ID: '7048cdd5-a15a-499a-aa44-37f7cb285196'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:40.8 |     -3.713 |      3.433 |
+-----------+------------+------------+------------+
generator list_scan ['7048cdd5'] (scan num: 17)


Transient Scan ID: 18     Time: 2025-11-06 21:30:41
Persistent Unique Scan ID: 'c304526d-ec8a-481c-96b9-a0eb252b263a'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:42.0 |     -5.000 |      2.379 |
+-----------+------------+------------+------------+
generator list_scan ['c304526d'] (scan num: 18)


Transient Scan ID: 19     Time: 2025-11-06 21:30:43
Persistent Unique Scan ID: 'b5c4d1a4-0232-4659-95ab-5baba1bd855b'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:43.1 |     -2.585 |      3.216 |
+-----------+------------+------------+------------+
generator list_scan ['b5c4d1a4'] (scan num: 19)


Transient Scan ID: 20     Time: 2025-11-06 21:30:44
Persistent Unique Scan ID: '03c14712-bccf-4266-bfde-a4a79264bdaa'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:44.2 |     -3.157 |      4.793 |
+-----------+------------+------------+------------+
generator list_scan ['03c14712'] (scan num: 20)


Transient Scan ID: 21     Time: 2025-11-06 21:30:45
Persistent Unique Scan ID: 'ab5a5a2e-aed3-44f5-8b14-da4199e84d6e'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:45.6 |     -2.806 |      2.630 |
+-----------+------------+------------+------------+
generator list_scan ['ab5a5a2e'] (scan num: 21)


Transient Scan ID: 22     Time: 2025-11-06 21:30:46
Persistent Unique Scan ID: '58004700-2165-4683-a7fe-0b327c78c78b'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:46.7 |     -2.728 |     -0.550 |
+-----------+------------+------------+------------+
generator list_scan ['58004700'] (scan num: 22)


Transient Scan ID: 23     Time: 2025-11-06 21:30:47
Persistent Unique Scan ID: '3959be8c-ffc8-4499-b944-8369f6d9b481'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:47.9 |      4.984 |      2.584 |
+-----------+------------+------------+------------+
generator list_scan ['3959be8c'] (scan num: 23)


Transient Scan ID: 24     Time: 2025-11-06 21:30:49
Persistent Unique Scan ID: '9dea0255-96fe-4d76-97a7-764298a5bc99'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:49.1 |      3.131 |      1.052 |
+-----------+------------+------------+------------+
generator list_scan ['9dea0255'] (scan num: 24)


Transient Scan ID: 25     Time: 2025-11-06 21:30:50
Persistent Unique Scan ID: 'ab1875f8-a096-472f-8667-41235140403b'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:50.3 |      2.568 |      2.240 |
+-----------+------------+------------+------------+
generator list_scan ['ab1875f8'] (scan num: 25)


Transient Scan ID: 26     Time: 2025-11-06 21:30:52
Persistent Unique Scan ID: '953ac1e6-f30c-4e0e-8e88-729fd1e1da23'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:52.4 |      3.056 |     -0.380 |
+-----------+------------+------------+------------+
generator list_scan ['953ac1e6'] (scan num: 26)


Transient Scan ID: 27     Time: 2025-11-06 21:30:54
Persistent Unique Scan ID: 'ca76d716-be0d-420f-a9ec-e51274f82805'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:54.5 |     -2.367 |      2.211 |
+-----------+------------+------------+------------+
generator list_scan ['ca76d716'] (scan num: 27)


Transient Scan ID: 28     Time: 2025-11-06 21:30:55
Persistent Unique Scan ID: '20483efb-b83e-4280-9e70-c157760e2301'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:55.8 |     -4.889 |     -1.819 |
+-----------+------------+------------+------------+
generator list_scan ['20483efb'] (scan num: 28)


Transient Scan ID: 29     Time: 2025-11-06 21:30:57
Persistent Unique Scan ID: '77d996e0-5b47-447a-861e-a66df3bd8738'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:57.1 |     -2.104 |     -4.246 |
+-----------+------------+------------+------------+
generator list_scan ['77d996e0'] (scan num: 29)


Transient Scan ID: 30     Time: 2025-11-06 21:30:58
Persistent Unique Scan ID: '4f6214b1-5e51-4e4c-b1a0-3682e8619c4b'
New stream: 'primary'
+-----------+------------+------------+------------+
|   seq_num |       time |         x1 |         x2 |
+-----------+------------+------------+------------+
|         1 | 21:30:58.3 |     -2.945 |      3.080 |
+-----------+------------+------------+------------+
generator list_scan ['4f6214b1'] (scan num: 30)
2025-11-06 21:30:23.087 INFO: Configuring optimization with objective: -himmelblau_2d and outcome constraints: []
2025-11-06 21:30:23.108 INFO: Executing plan <generator object Agent.learn at 0x7f8c90782b40>
2025-11-06 21:30:23.110 INFO: Change state on <bluesky.run_engine.RunEngine object at 0x7f8c93bbdc70> from 'idle' -> 'running'
2025-11-06 21:30:58.663 INFO: Change state on <bluesky.run_engine.RunEngine object at 0x7f8c93bbdc70> from 'running' -> 'idle'
2025-11-06 21:30:58.664 INFO: Cleaned up from plan <generator object Agent.learn at 0x7f8c90782b40>
('2c3dc953-3162-4aa1-85e7-bf2a97683fc1',
 'df3dfcb0-a855-4f62-bf61-839b73aba718',
 'c4b9910b-efd0-49f9-b21f-51994e148a55',
 '157c4230-ec15-4e7e-8e7b-de785501c6a5',
 '1d7b34b4-30c2-4939-8079-d15990715249',
 '6b8e7bd7-2ca5-434f-a2f2-d920df5bf272',
 '90b016c0-fdb0-422d-a1ec-131a6c719791',
 '5f4f7561-1eaf-41b7-b604-698d5f3572ac',
 'a2f8d6b4-d445-4a68-911e-52abfd9b7803',
 '0f0c13f9-848b-40fc-8832-cd3be0264245',
 '0282a300-59ff-4d7e-87cf-549c8596325d',
 '9acbf3b6-0068-4a0d-b17c-c62ad813f135',
 '3f4bd732-8d4a-4913-94d9-4dba29b50ebb',
 'c691f56e-b4cc-4254-ae69-67e6ea0789ac',
 'f890aad1-8379-4eaf-a9b5-efc30d041f33',
 'becbbcbf-1dc9-47c8-a0d6-2977b9b88519',
 '7048cdd5-a15a-499a-aa44-37f7cb285196',
 'c304526d-ec8a-481c-96b9-a0eb252b263a',
 'b5c4d1a4-0232-4659-95ab-5baba1bd855b',
 '03c14712-bccf-4266-bfde-a4a79264bdaa',
 'ab5a5a2e-aed3-44f5-8b14-da4199e84d6e',
 '58004700-2165-4683-a7fe-0b327c78c78b',
 '3959be8c-ffc8-4499-b944-8369f6d9b481',
 '9dea0255-96fe-4d76-97a7-764298a5bc99',
 'ab1875f8-a096-472f-8667-41235140403b',
 '953ac1e6-f30c-4e0e-8e88-729fd1e1da23',
 'ca76d716-be0d-420f-a9ec-e51274f82805',
 '20483efb-b83e-4280-9e70-c157760e2301',
 '77d996e0-5b47-447a-861e-a66df3bd8738',
 '4f6214b1-5e51-4e4c-b1a0-3682e8619c4b')

Now we can view the results.

agent.plot_objective("x1", "x2", "himmelblau_2d")
agent.summarize()
x1, x2 vs. himmelblau_2d

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 162.653959 -4.873510 -4.661918
2 2 2_0 COMPLETED Sobol 38.695227 1.666313 2.933785
3 3 3_0 COMPLETED Sobol 11.857164 3.575495 -0.485247
4 4 4_0 COMPLETED Sobol 93.857211 -0.542458 1.882114
5 5 5_0 COMPLETED MBM 17.513316 3.674625 1.073005
6 6 6_0 COMPLETED MBM 159.032266 4.919937 -0.696289
7 7 7_0 COMPLETED MBM 109.103510 3.224041 3.708075
8 8 8_0 COMPLETED MBM 2.813369 3.809002 -1.844566
9 9 9_0 COMPLETED MBM 475.812618 3.622591 -5.000000
10 10 10_0 COMPLETED MBM 25.315678 2.805082 -1.468376
11 11 11_0 COMPLETED MBM 19.805191 2.490000 1.318337
12 12 12_0 COMPLETED MBM 144.884534 -0.010320 4.108413
13 13 13_0 COMPLETED MBM 0.152686 3.055856 2.023084
14 14 14_0 COMPLETED MBM 2.711416 3.469574 -1.385999
15 15 15_0 COMPLETED MBM 67.312774 -3.168570 1.405790
16 16 16_0 COMPLETED MBM 39.807523 -3.712718 3.433081
17 17 17_0 COMPLETED MBM 308.480886 -5.000000 2.378670
18 18 18_0 COMPLETED MBM 1.780217 -2.585430 3.215709
19 19 19_0 COMPLETED MBM 178.317919 -3.156909 4.792759
20 20 20_0 COMPLETED MBM 8.590152 -2.806139 2.630100
21 21 21_0 COMPLETED MBM 105.723883 -2.727774 -0.549826
22 22 22_0 COMPLETED MBM 291.634765 4.984412 2.584176
23 23 23_0 COMPLETED MBM 7.652630 3.131019 1.051873
24 24 24_0 COMPLETED MBM 5.026217 2.568253 2.239734
25 25 25_0 COMPLETED MBM 18.587715 3.056457 -0.379715
26 26 26_0 COMPLETED MBM 30.184337 -2.367107 2.211495
27 27 27_0 COMPLETED MBM 196.534269 -4.889424 -1.819300
28 28 28_0 COMPLETED MBM 196.708104 -2.103845 -4.245939
29 29 29_0 COMPLETED MBM 0.775473 -2.944683 3.079707