Asynchronous Multiagent Decision Making

This tutorial demonstrates how to configure and train a multiagent environment in RLlib in which homogeneous agents act asyncronously while learning learning a single policy.

Warning: Part of RLlib’s backend mishandles the potential for zero-length episodes, which this method may produce. If this PR is unmerged, it must be manually applied to your installation: https://github.com/ray-project/ray/pull/46721

This example was run with the following version of RLlib:

[1]:
from importlib.metadata import version
from typing import ClassVar

version("ray")  # Parent package of RLlib
[1]:
'2.35.0'

Define the Environment

A simple multi-satellite environment is defined. This environment is trivial for the multiagent case since there is no communication or interaction between satellites, but it serves to demonstrate asynchronous behavior.

[2]:
import numpy as np

from bsk_rl import act, data, obs, sats, scene
from bsk_rl.sim import dyn, fsw


class ScanningDownlinkDynModel(dyn.ContinuousImagingDynModel, dyn.GroundStationDynModel):
    # Define some custom properties to be accessed in the state
    @property
    def instrument_pointing_error(self) -> float:
        r_BN_P_unit = self.r_BN_P/np.linalg.norm(self.r_BN_P)
        c_hat_P = self.satellite.fsw.c_hat_P
        return np.arccos(np.dot(-r_BN_P_unit, c_hat_P))

    @property
    def solar_pointing_error(self) -> float:
        a = self.world.gravFactory.spiceObject.planetStateOutMsgs[
            self.world.sun_index
        ].read().PositionVector
        a_hat_N = a / np.linalg.norm(a)
        nHat_B = self.satellite.sat_args["nHat_B"]
        NB = np.transpose(self.BN)
        nHat_N = NB @ nHat_B
        return np.arccos(np.dot(nHat_N, a_hat_N))

class ScanningSatellite(sats.AccessSatellite):
    observation_spec: ClassVar[list[obs.Observation]] = [
        obs.SatProperties(
            dict(prop="storage_level_fraction"),
            dict(prop="battery_charge_fraction"),
            dict(prop="wheel_speeds_fraction"),
            dict(prop="instrument_pointing_error", norm=np.pi),
            dict(prop="solar_pointing_error", norm=np.pi)
        ),
        obs.OpportunityProperties(
            dict(prop="opportunity_open", norm=5700),
            dict(prop="opportunity_close", norm=5700),
            type="ground_station",
            n_ahead_observe=1,
        ),
        obs.Eclipse(norm=5700),
    ]
    action_spec: ClassVar[list[act.Action]] = [
        act.Scan(duration=150.0),
        act.Charge(duration=120.0),
        act.Downlink(duration=80.0),
        act.Desat(duration=45.0),
    ]
    dyn_type = ScanningDownlinkDynModel
    fsw_type = fsw.ContinuousImagingFSWModel

sats = [ScanningSatellite(
    f"Scanner-{i+1}",
    sat_args=dict(
        # Data
        dataStorageCapacity=5000 * 8e6,  # bits
        storageInit=lambda: np.random.uniform(0.0, 0.8) * 5000 * 8e6,
        instrumentBaudRate=0.5 * 8e6,
        transmitterBaudRate=-50 * 8e6,
        # Power
        batteryStorageCapacity=200 * 3600,  # W*s
        storedCharge_Init=lambda: np.random.uniform(0.3, 1.0) * 200 * 3600,
        basePowerDraw=-10.0,  # W
        instrumentPowerDraw=-30.0,  # W
        transmitterPowerDraw=-25.0,  # W
        thrusterPowerDraw=-80.0,  # W
        panelArea=0.25,
        # Attitude
        imageAttErrorRequirement=0.1,
        imageRateErrorRequirement=0.1,
        disturbance_vector=lambda: np.random.normal(scale=0.0001, size=3),  # N*m
        maxWheelSpeed=6000.0,  # RPM
        wheelSpeeds=lambda: np.random.uniform(-3000, 3000, 3),
        desatAttitude="nadir",
    )
) for i in range(4)]

Correlated Environment Parameters

To construct a constellation with some coordinated, a function is generated to map satellites to orbital elements:

[3]:
from bsk_rl.utils.orbital import walker_delta_args

sat_arg_randomizer = walker_delta_args(n_planes=2, altitude=500)

The sat_arg_randomizer is included in the environment arguments.

[4]:
duration = 5 * 5700.0  # About 5 orbits
env_args = dict(
    satellites=sats,
    scenario=scene.UniformNadirScanning(value_per_second=1/duration),
    rewarder=data.ScanningTimeReward(),
    time_limit=duration,
    failure_penalty=-1.0,
    terminate_on_time_limit=True,
    sat_arg_randomizer=sat_arg_randomizer,
)

RLlib Training Configuration

A standard PPO configuration is generated.

[5]:
import bsk_rl.utils.rllib  # noqa To access "ConstellationTasking-RLlib"
from ray.rllib.algorithms.ppo import PPOConfig


N_CPUS = 3

training_args = dict(
    lr=0.00003,
    gamma=0.99997,
    train_batch_size=200 * N_CPUS,
    num_sgd_iter=10,
    lambda_=0.95,
    use_kl_loss=False,
    clip_param=0.1,
    grad_clip=0.5,
    mini_batch_size_per_learner=100,
)

config = (
    PPOConfig()
    .environment(
        "ConstellationTasking-RLlib",
        env_config=env_args,
    )
    .env_runners(
        num_env_runners=N_CPUS - 1,
        sample_timeout_s=1000.0,
    )
    .reporting(
        metrics_num_episodes_for_smoothing=1,
        metrics_episode_collection_timeout_s=180,
    )
    .checkpointing(export_native_model_files=True)
    .framework(framework="torch")
    .api_stack(
        enable_rl_module_and_learner=True,
        enable_env_runner_and_connector_v2=True,
    )
    .training(
        **training_args,
    )
)

To set up multiple agents using the same policy, the following configurations are set to map all agents to the policy p0.

[6]:
try:
    from ray.rllib.core.rl_module.multi_rl_module import MultiRLModuleSpec
    from ray.rllib.core.rl_module.rl_module import RLModuleSpec
except (ImportError, ModuleNotFoundError):  # Older versions of RLlib
    from ray.rllib.core.rl_module.marl_module import (
        MultiAgentRLModuleSpec as MultiRLModuleSpec,
    )
    from ray.rllib.core.rl_module.rl_module import (
        SingleAgentRLModuleSpec as RLModuleSpec,
    )

config.multi_agent(
    policies={"p0"},
    policy_mapping_fn=lambda *args, **kwargs: "p0",
).rl_module(
    model_config_dict={
        "use_lstm": False,
        # Use a simpler FCNet when we also have an LSTM.
        "fcnet_hiddens": [2048, 2048],
        "vf_share_layers": False,
    },
    rl_module_spec=MultiRLModuleSpec(
        module_specs={
            "p0": RLModuleSpec(),
        }
    ),
)


[6]:
<ray.rllib.algorithms.ppo.ppo.PPOConfig at 0x7ff9f8a134d0>

Configuring Multiagent Logging Callbacks

A callback function for the entire environment

[7]:
def env_metrics_callback(env):
    reward = env.rewarder.cum_reward
    reward = sum(reward.values()) / len(reward)
    return dict(reward=reward)

and per satellite

[8]:
def sat_metrics_callback(env, satellite):
    data = dict(
        # Are satellites dying, and how and when?
        alive=float(satellite.is_alive()),
        rw_status_valid=float(satellite.dynamics.rw_speeds_valid()),
        battery_status_valid=float(satellite.dynamics.battery_valid()),
    )
    return data

are defined. The sat_metrics_callback will be reported per-agent and as a mean. If using the predefined "ConstellationTasking-RLlib", only the WrappedEpisodeDataCallbacks need to be added to the config, as in the single-agent case.

[9]:
from bsk_rl.utils.rllib.callbacks import WrappedEpisodeDataCallbacks

config.callbacks(WrappedEpisodeDataCallbacks)
[9]:
<ray.rllib.algorithms.ppo.ppo.PPOConfig at 0x7ff9f8a134d0>

Action Continuation and Concatenation

Logic to prevent all agents from retasking whenever any agent finishes an action is introduced, in the form of connector modules. First, the ContinuePreviousAction connector overrides any policy-selected action with the bsk_rl.NO_ACTION whenever requires_retasking==False for an agent, causing the agent to continue its current action.

[10]:
from bsk_rl.utils.rllib import discounting

config.env_runners(
    module_to_env_connector=lambda env: (discounting.ContinuePreviousAction(),)
)
[10]:
<ray.rllib.algorithms.ppo.ppo.PPOConfig at 0x7ff9f8a134d0>

Then, two other connectors compress NO_ACTION out of episodes of experience, combining steps into those with super-actions. The d_ts timestep flag is calculated accordingly.

[11]:
config.training(
    learner_connector=lambda obs_space, act_space: (
        discounting.MakeAddedStepActionValid(expected_train_batch_size=config.train_batch_size),
        discounting.CondenseMultiStepActions(),
    ),
)
[11]:
<ray.rllib.algorithms.ppo.ppo.PPOConfig at 0x7ff9f8a134d0>

Lastly, the TimeDiscountedGAEPPOTorchLearner is used, as in :doc:examples/time_discounted_gae.

[12]:
config.training(learner_class=discounting.TimeDiscountedGAEPPOTorchLearner)
[12]:
<ray.rllib.algorithms.ppo.ppo.PPOConfig at 0x7ff9f8a134d0>

Note that when using these connectors, only the requires_retasking flag will case agents to select a new action. Step timeouts due to max_step_duration will not trigger retasking.

Training the Agent

At this point, the PPO config can be trained as desired.

[13]:
import ray
from ray import tune

ray.init(
    ignore_reinit_error=True,
    num_cpus=N_CPUS,
    object_store_memory=2_000_000_000,  # 2 GB
)

# Run the training
tune.run(
    "PPO",
    config=config.to_dict(),
    stop={"training_iteration": 2},  # Adjust the number of iterations as needed
)

# Shutdown Ray
ray.shutdown()
2026-09-02 14:50:11,658 INFO worker.py:1783 -- Started a local Ray instance.
2026-09-02 14:50:15,656 INFO tune.py:616 -- [output] This uses the legacy output and progress reporter, as Jupyter notebooks are not supported by the new engine, yet. For more information, please see https://github.com/ray-project/ray/issues/36949
/opt/hostedtoolcache/Python/3.11.16/x64/lib/python3.11/site-packages/gymnasium/spaces/box.py:130: UserWarning: WARN: Box bound precision lowered by casting to float32
  gym.logger.warn(f"Box bound precision lowered by casting to {self.dtype}")
/opt/hostedtoolcache/Python/3.11.16/x64/lib/python3.11/site-packages/gymnasium/utils/passive_env_checker.py:164: UserWarning: WARN: The obs returned by the `reset()` method was expecting numpy array dtype to be float32, actual type: float64
  logger.warn(
/opt/hostedtoolcache/Python/3.11.16/x64/lib/python3.11/site-packages/gymnasium/utils/passive_env_checker.py:188: UserWarning: WARN: The obs returned by the `reset()` method is not within the observation space.
  logger.warn(f"{pre} is not within the observation space.")

Tune Status

Current time:2026-09-02 14:51:00
Running for: 00:00:44.93
Memory: 5.0/15.6 GiB

System Info

Using FIFO scheduling algorithm.
Logical resource usage: 3.0/3 CPUs, 0/0 GPUs

Trial Status

Trial name status loc iter total time (s) num_env_steps_sample d_lifetime num_episodes_lifetim e num_env_steps_traine d_lifetime
PPO_ConstellationTasking-RLlib_9bd6e_00000TERMINATED10.1.1.29:2963 2 26.4623120001200
(PPO pid=2963) Trainable.setup took 10.728 seconds. If your trainable is slow to initialize, consider setting reuse_actors=True to reduce actor creation overheads.
(PPO pid=2963) Install gputil for GPU system monitoring.
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,376 utils.orbital                  WARNING    <0.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,377 utils.orbital                  WARNING    <0.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,400 utils.orbital                  WARNING    <45.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,402 utils.orbital                  WARNING    <45.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,421 utils.orbital                  WARNING    <80.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,422 utils.orbital                  WARNING    <80.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,439 utils.orbital                  WARNING    <90.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,440 utils.orbital                  WARNING    <90.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,461 utils.orbital                  WARNING    <120.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,463 utils.orbital                  WARNING    <120.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,480 utils.orbital                  WARNING    <135.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,481 utils.orbital                  WARNING    <135.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,502 utils.orbital                  WARNING    <165.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,503 utils.orbital                  WARNING    <165.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,522 utils.orbital                  WARNING    <200.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,523 utils.orbital                  WARNING    <200.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,539 utils.orbital                  WARNING    <215.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,540 utils.orbital                  WARNING    <215.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,556 utils.orbital                  WARNING    <240.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,557 utils.orbital                  WARNING    <240.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,570 utils.orbital                  WARNING    <245.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,571 utils.orbital                  WARNING    <245.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,592 utils.orbital                  WARNING    <295.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,594 utils.orbital                  WARNING    <295.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,616 utils.orbital                  WARNING    <350.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,617 utils.orbital                  WARNING    <350.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,631 utils.orbital                  WARNING    <360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,632 utils.orbital                  WARNING    <360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,646 utils.orbital                  WARNING    <365.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,648 utils.orbital                  WARNING    <365.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,666 utils.orbital                  WARNING    <395.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,667 utils.orbital                  WARNING    <395.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,681 utils.orbital                  WARNING    <405.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,682 utils.orbital                  WARNING    <405.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,696 utils.orbital                  WARNING    <415.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,698 utils.orbital                  WARNING    <415.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,719 utils.orbital                  WARNING    <460.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,720 utils.orbital                  WARNING    <460.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,735 utils.orbital                  WARNING    <475.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,736 utils.orbital                  WARNING    <475.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,755 utils.orbital                  WARNING    <515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,757 utils.orbital                  WARNING    <515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,771 utils.orbital                  WARNING    <525.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,772 utils.orbital                  WARNING    <525.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,789 utils.orbital                  WARNING    <555.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,790 utils.orbital                  WARNING    <555.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,812 utils.orbital                  WARNING    <580.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,813 utils.orbital                  WARNING    <580.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,832 utils.orbital                  WARNING    <600.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,833 utils.orbital                  WARNING    <600.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,851 utils.orbital                  WARNING    <625.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,852 utils.orbital                  WARNING    <625.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,868 utils.orbital                  WARNING    <635.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,869 utils.orbital                  WARNING    <635.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,884 utils.orbital                  WARNING    <645.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,886 utils.orbital                  WARNING    <645.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,916 utils.orbital                  WARNING    <715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,917 utils.orbital                  WARNING    <715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,931 utils.orbital                  WARNING    <720.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,933 utils.orbital                  WARNING    <720.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,950 utils.orbital                  WARNING    <745.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,951 utils.orbital                  WARNING    <745.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,968 utils.orbital                  WARNING    <765.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,970 utils.orbital                  WARNING    <765.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,991 utils.orbital                  WARNING    <800.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:34,992 utils.orbital                  WARNING    <800.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,008 utils.orbital                  WARNING    <810.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,009 utils.orbital                  WARNING    <810.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,026 utils.orbital                  WARNING    <825.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,028 utils.orbital                  WARNING    <825.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,050 utils.orbital                  WARNING    <865.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,052 utils.orbital                  WARNING    <865.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,066 utils.orbital                  WARNING    <880.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,067 utils.orbital                  WARNING    <880.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,088 utils.orbital                  WARNING    <925.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,089 utils.orbital                  WARNING    <925.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,109 utils.orbital                  WARNING    <960.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,110 utils.orbital                  WARNING    <960.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,124 utils.orbital                  WARNING    <970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,125 utils.orbital                  WARNING    <970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,139 utils.orbital                  WARNING    <975.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,140 utils.orbital                  WARNING    <975.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,159 utils.orbital                  WARNING    <1015.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,160 utils.orbital                  WARNING    <1015.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,178 utils.orbital                  WARNING    <1050.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,179 utils.orbital                  WARNING    <1050.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,192 utils.orbital                  WARNING    <1055.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,193 utils.orbital                  WARNING    <1055.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,211 utils.orbital                  WARNING    <1080.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,212 utils.orbital                  WARNING    <1080.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,229 utils.orbital                  WARNING    <1100.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,231 utils.orbital                  WARNING    <1100.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,248 utils.orbital                  WARNING    <1125.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,249 utils.orbital                  WARNING    <1125.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,262 utils.orbital                  WARNING    <1130.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,263 utils.orbital                  WARNING    <1130.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,278 utils.orbital                  WARNING    <1145.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,279 utils.orbital                  WARNING    <1145.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,295 utils.orbital                  WARNING    <1165.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,296 utils.orbital                  WARNING    <1165.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,310 utils.orbital                  WARNING    <1175.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,311 utils.orbital                  WARNING    <1175.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,336 utils.orbital                  WARNING    <1210.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,338 utils.orbital                  WARNING    <1210.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,365 utils.orbital                  WARNING    <1245.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,367 utils.orbital                  WARNING    <1245.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,381 utils.orbital                  WARNING    <1255.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,382 utils.orbital                  WARNING    <1255.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,397 utils.orbital                  WARNING    <1265.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,398 utils.orbital                  WARNING    <1265.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,428 utils.orbital                  WARNING    <1330.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,429 utils.orbital                  WARNING    <1330.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,447 utils.orbital                  WARNING    <1345.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,449 utils.orbital                  WARNING    <1345.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,467 utils.orbital                  WARNING    <1365.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,468 utils.orbital                  WARNING    <1365.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,482 utils.orbital                  WARNING    <1375.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,483 utils.orbital                  WARNING    <1375.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,500 utils.orbital                  WARNING    <1390.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,502 utils.orbital                  WARNING    <1390.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,518 utils.orbital                  WARNING    <1405.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,520 utils.orbital                  WARNING    <1405.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,536 utils.orbital                  WARNING    <1410.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,538 utils.orbital                  WARNING    <1410.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,561 utils.orbital                  WARNING    <1455.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,563 utils.orbital                  WARNING    <1455.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,580 utils.orbital                  WARNING    <1470.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,582 utils.orbital                  WARNING    <1470.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,599 utils.orbital                  WARNING    <1485.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,600 utils.orbital                  WARNING    <1485.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,620 utils.orbital                  WARNING    <1500.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,621 utils.orbital                  WARNING    <1500.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,639 utils.orbital                  WARNING    <1515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,641 utils.orbital                  WARNING    <1515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,665 utils.orbital                  WARNING    <1560.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,667 utils.orbital                  WARNING    <1560.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,685 utils.orbital                  WARNING    <1565.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,686 utils.orbital                  WARNING    <1565.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,701 utils.orbital                  WARNING    <1580.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,702 utils.orbital                  WARNING    <1580.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,718 utils.orbital                  WARNING    <1595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,719 utils.orbital                  WARNING    <1595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,733 utils.orbital                  WARNING    <1605.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,734 utils.orbital                  WARNING    <1605.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,760 utils.orbital                  WARNING    <1685.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,762 utils.orbital                  WARNING    <1685.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,779 utils.orbital                  WARNING    <1715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,780 utils.orbital                  WARNING    <1715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,795 utils.orbital                  WARNING    <1730.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,796 utils.orbital                  WARNING    <1730.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,814 utils.orbital                  WARNING    <1760.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,815 utils.orbital                  WARNING    <1760.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,837 utils.orbital                  WARNING    <1805.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,838 utils.orbital                  WARNING    <1805.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,856 utils.orbital                  WARNING    <1835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,857 utils.orbital                  WARNING    <1835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,878 utils.orbital                  WARNING    <1880.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,879 utils.orbital                  WARNING    <1880.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,899 utils.orbital                  WARNING    <1925.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,901 utils.orbital                  WARNING    <1925.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,918 utils.orbital                  WARNING    <1955.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,919 utils.orbital                  WARNING    <1955.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,936 utils.orbital                  WARNING    <1970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,937 utils.orbital                  WARNING    <1970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,952 utils.orbital                  WARNING    <1985.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,953 utils.orbital                  WARNING    <1985.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,968 utils.orbital                  WARNING    <2000.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,969 utils.orbital                  WARNING    <2000.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,987 utils.orbital                  WARNING    <2035.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:35,988 utils.orbital                  WARNING    <2035.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,002 utils.orbital                  WARNING    <2045.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,004 utils.orbital                  WARNING    <2045.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,019 utils.orbital                  WARNING    <2065.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,020 utils.orbital                  WARNING    <2065.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,039 utils.orbital                  WARNING    <2090.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,040 utils.orbital                  WARNING    <2090.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,056 utils.orbital                  WARNING    <2115.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,058 utils.orbital                  WARNING    <2115.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,095 utils.orbital                  WARNING    <2195.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,097 utils.orbital                  WARNING    <2195.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,115 utils.orbital                  WARNING    <2210.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,116 utils.orbital                  WARNING    <2210.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,129 utils.orbital                  WARNING    <2215.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,130 utils.orbital                  WARNING    <2215.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,149 utils.orbital                  WARNING    <2240.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,151 utils.orbital                  WARNING    <2240.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,184 utils.orbital                  WARNING    <2290.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,186 utils.orbital                  WARNING    <2290.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,208 utils.orbital                  WARNING    <2335.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,209 utils.orbital                  WARNING    <2335.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,226 utils.orbital                  WARNING    <2360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,227 utils.orbital                  WARNING    <2360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,244 utils.orbital                  WARNING    <2380.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,245 utils.orbital                  WARNING    <2380.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,262 utils.orbital                  WARNING    <2405.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,263 utils.orbital                  WARNING    <2405.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,276 utils.orbital                  WARNING    <2410.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,277 utils.orbital                  WARNING    <2410.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,295 utils.orbital                  WARNING    <2440.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,296 utils.orbital                  WARNING    <2440.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,310 utils.orbital                  WARNING    <2450.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,312 utils.orbital                  WARNING    <2450.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,326 utils.orbital                  WARNING    <2460.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,327 utils.orbital                  WARNING    <2460.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,354 utils.orbital                  WARNING    <2540.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,355 utils.orbital                  WARNING    <2540.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,371 utils.orbital                  WARNING    <2560.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,372 utils.orbital                  WARNING    <2560.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,392 utils.orbital                  WARNING    <2600.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,393 utils.orbital                  WARNING    <2600.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,409 utils.orbital                  WARNING    <2620.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,410 utils.orbital                  WARNING    <2620.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,434 utils.orbital                  WARNING    <2680.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,435 utils.orbital                  WARNING    <2680.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,452 utils.orbital                  WARNING    <2700.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,453 utils.orbital                  WARNING    <2700.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,469 utils.orbital                  WARNING    <2710.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,470 utils.orbital                  WARNING    <2710.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,493 utils.orbital                  WARNING    <2745.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,494 utils.orbital                  WARNING    <2745.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,509 utils.orbital                  WARNING    <2750.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,510 utils.orbital                  WARNING    <2750.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,530 utils.orbital                  WARNING    <2790.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,531 utils.orbital                  WARNING    <2790.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,545 utils.orbital                  WARNING    <2800.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,546 utils.orbital                  WARNING    <2800.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,565 utils.orbital                  WARNING    <2830.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,566 utils.orbital                  WARNING    <2830.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,579 utils.orbital                  WARNING    <2835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,581 utils.orbital                  WARNING    <2835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,607 utils.orbital                  WARNING    <2915.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,608 utils.orbital                  WARNING    <2915.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,621 utils.orbital                  WARNING    <2920.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,623 utils.orbital                  WARNING    <2920.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,640 utils.orbital                  WARNING    <2950.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,642 utils.orbital                  WARNING    <2950.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,670 utils.orbital                  WARNING    <3035.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,672 utils.orbital                  WARNING    <3035.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,685 utils.orbital                  WARNING    <3040.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,686 utils.orbital                  WARNING    <3040.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,702 utils.orbital                  WARNING    <3065.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,703 utils.orbital                  WARNING    <3065.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,716 utils.orbital                  WARNING    <3070.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,717 utils.orbital                  WARNING    <3070.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,745 utils.orbital                  WARNING    <3155.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,746 utils.orbital                  WARNING    <3155.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,760 utils.orbital                  WARNING    <3160.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,761 utils.orbital                  WARNING    <3160.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,778 utils.orbital                  WARNING    <3185.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,779 utils.orbital                  WARNING    <3185.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,797 utils.orbital                  WARNING    <3220.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,798 utils.orbital                  WARNING    <3220.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,814 utils.orbital                  WARNING    <3240.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,815 utils.orbital                  WARNING    <3240.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,838 utils.orbital                  WARNING    <3305.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,839 utils.orbital                  WARNING    <3305.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,865 utils.orbital                  WARNING    <3350.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,868 utils.orbital                  WARNING    <3350.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,886 utils.orbital                  WARNING    <3360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,887 utils.orbital                  WARNING    <3360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,905 utils.orbital                  WARNING    <3370.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,906 utils.orbital                  WARNING    <3370.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,923 utils.orbital                  WARNING    <3385.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,924 utils.orbital                  WARNING    <3385.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,950 utils.orbital                  WARNING    <3430.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,951 utils.orbital                  WARNING    <3430.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,970 utils.orbital                  WARNING    <3450.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,971 utils.orbital                  WARNING    <3450.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,989 utils.orbital                  WARNING    <3465.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:36,990 utils.orbital                  WARNING    <3465.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,012 utils.orbital                  WARNING    <3510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,013 utils.orbital                  WARNING    <3510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,031 utils.orbital                  WARNING    <3530.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,033 utils.orbital                  WARNING    <3530.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,053 utils.orbital                  WARNING    <3550.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,054 utils.orbital                  WARNING    <3550.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,070 utils.orbital                  WARNING    <3555.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,072 utils.orbital                  WARNING    <3555.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,096 utils.orbital                  WARNING    <3590.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,098 utils.orbital                  WARNING    <3590.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,115 utils.orbital                  WARNING    <3600.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,117 utils.orbital                  WARNING    <3600.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,140 utils.orbital                  WARNING    <3650.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,141 utils.orbital                  WARNING    <3650.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,163 utils.orbital                  WARNING    <3695.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,165 utils.orbital                  WARNING    <3695.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,181 utils.orbital                  WARNING    <3700.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,183 utils.orbital                  WARNING    <3700.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,205 utils.orbital                  WARNING    <3740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,206 utils.orbital                  WARNING    <3740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,223 utils.orbital                  WARNING    <3750.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,224 utils.orbital                  WARNING    <3750.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,246 utils.orbital                  WARNING    <3785.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,247 utils.orbital                  WARNING    <3785.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,270 utils.orbital                  WARNING    <3815.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,272 utils.orbital                  WARNING    <3815.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,294 utils.orbital                  WARNING    <3850.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,295 utils.orbital                  WARNING    <3850.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,311 utils.orbital                  WARNING    <3860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,312 utils.orbital                  WARNING    <3860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,333 utils.orbital                  WARNING    <3900.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,334 utils.orbital                  WARNING    <3900.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,356 utils.orbital                  WARNING    <3930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,357 utils.orbital                  WARNING    <3930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,372 utils.orbital                  WARNING    <3935.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,374 utils.orbital                  WARNING    <3935.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,390 utils.orbital                  WARNING    <3940.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,391 utils.orbital                  WARNING    <3940.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,415 utils.orbital                  WARNING    <3980.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,416 utils.orbital                  WARNING    <3980.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,444 utils.orbital                  WARNING    <4020.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,446 utils.orbital                  WARNING    <4020.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,475 utils.orbital                  WARNING    <4065.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,476 utils.orbital                  WARNING    <4065.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,496 utils.orbital                  WARNING    <4080.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,497 utils.orbital                  WARNING    <4080.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,511 utils.orbital                  WARNING    <4085.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,512 utils.orbital                  WARNING    <4085.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,532 utils.orbital                  WARNING    <4130.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,533 utils.orbital                  WARNING    <4130.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,551 utils.orbital                  WARNING    <4160.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,552 utils.orbital                  WARNING    <4160.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,574 utils.orbital                  WARNING    <4215.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,575 utils.orbital                  WARNING    <4215.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,595 utils.orbital                  WARNING    <4235.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,597 utils.orbital                  WARNING    <4235.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,614 utils.orbital                  WARNING    <4250.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,615 utils.orbital                  WARNING    <4250.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,637 utils.orbital                  WARNING    <4280.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,638 utils.orbital                  WARNING    <4280.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,670 utils.orbital                  WARNING    <4335.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,672 utils.orbital                  WARNING    <4335.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,694 utils.orbital                  WARNING    <4360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,695 utils.orbital                  WARNING    <4360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,720 utils.orbital                  WARNING    <4400.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,721 utils.orbital                  WARNING    <4400.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,748 utils.orbital                  WARNING    <4440.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,750 utils.orbital                  WARNING    <4440.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,767 utils.orbital                  WARNING    <4455.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,769 utils.orbital                  WARNING    <4455.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,791 utils.orbital                  WARNING    <4480.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,793 utils.orbital                  WARNING    <4480.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,809 utils.orbital                  WARNING    <4485.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,811 utils.orbital                  WARNING    <4485.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,831 utils.orbital                  WARNING    <4500.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,832 utils.orbital                  WARNING    <4500.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,852 utils.orbital                  WARNING    <4525.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,853 utils.orbital                  WARNING    <4525.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,867 utils.orbital                  WARNING    <4530.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,868 utils.orbital                  WARNING    <4530.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,889 utils.orbital                  WARNING    <4545.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,890 utils.orbital                  WARNING    <4545.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,908 utils.orbital                  WARNING    <4575.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,909 utils.orbital                  WARNING    <4575.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,924 utils.orbital                  WARNING    <4590.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,925 utils.orbital                  WARNING    <4590.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,940 utils.orbital                  WARNING    <4605.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,941 utils.orbital                  WARNING    <4605.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,958 utils.orbital                  WARNING    <4630.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,959 utils.orbital                  WARNING    <4630.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,972 utils.orbital                  WARNING    <4635.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,974 utils.orbital                  WARNING    <4635.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,997 utils.orbital                  WARNING    <4695.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:37,998 utils.orbital                  WARNING    <4695.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,014 utils.orbital                  WARNING    <4715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,015 utils.orbital                  WARNING    <4715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,029 utils.orbital                  WARNING    <4725.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,031 utils.orbital                  WARNING    <4725.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,053 utils.orbital                  WARNING    <4780.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,054 utils.orbital                  WARNING    <4780.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,069 utils.orbital                  WARNING    <4795.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,070 utils.orbital                  WARNING    <4795.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,091 utils.orbital                  WARNING    <4840.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,093 utils.orbital                  WARNING    <4840.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,107 utils.orbital                  WARNING    <4845.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,108 utils.orbital                  WARNING    <4845.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,125 utils.orbital                  WARNING    <4875.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,126 utils.orbital                  WARNING    <4875.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,146 utils.orbital                  WARNING    <4920.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,147 utils.orbital                  WARNING    <4920.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,162 utils.orbital                  WARNING    <4930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,163 utils.orbital                  WARNING    <4930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,186 utils.orbital                  WARNING    <4990.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,187 utils.orbital                  WARNING    <4990.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,200 utils.orbital                  WARNING    <4995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,202 utils.orbital                  WARNING    <4995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,215 utils.orbital                  WARNING    <5000.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,216 utils.orbital                  WARNING    <5000.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,236 utils.orbital                  WARNING    <5045.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,238 utils.orbital                  WARNING    <5045.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,251 utils.orbital                  WARNING    <5050.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,252 utils.orbital                  WARNING    <5050.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,275 utils.orbital                  WARNING    <5115.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,277 utils.orbital                  WARNING    <5115.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,292 utils.orbital                  WARNING    <5130.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,294 utils.orbital                  WARNING    <5130.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,310 utils.orbital                  WARNING    <5140.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,311 utils.orbital                  WARNING    <5140.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,328 utils.orbital                  WARNING    <5165.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,329 utils.orbital                  WARNING    <5165.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,349 utils.orbital                  WARNING    <5185.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,350 utils.orbital                  WARNING    <5185.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,378 utils.orbital                  WARNING    <5230.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,379 utils.orbital                  WARNING    <5230.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,397 utils.orbital                  WARNING    <5250.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,399 utils.orbital                  WARNING    <5250.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,416 utils.orbital                  WARNING    <5265.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,417 utils.orbital                  WARNING    <5265.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,440 utils.orbital                  WARNING    <5310.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,441 utils.orbital                  WARNING    <5310.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,454 utils.orbital                  WARNING    <5315.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,456 utils.orbital                  WARNING    <5315.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,475 utils.orbital                  WARNING    <5355.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,476 utils.orbital                  WARNING    <5355.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,492 utils.orbital                  WARNING    <5370.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,493 utils.orbital                  WARNING    <5370.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,512 utils.orbital                  WARNING    <5400.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,513 utils.orbital                  WARNING    <5400.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,536 utils.orbital                  WARNING    <5460.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,537 utils.orbital                  WARNING    <5460.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,551 utils.orbital                  WARNING    <5465.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,552 utils.orbital                  WARNING    <5465.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,570 utils.orbital                  WARNING    <5490.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,571 utils.orbital                  WARNING    <5490.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,596 utils.orbital                  WARNING    <5550.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,597 utils.orbital                  WARNING    <5550.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,624 utils.orbital                  WARNING    <5580.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,625 utils.orbital                  WARNING    <5580.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,651 utils.orbital                  WARNING    <5610.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,652 utils.orbital                  WARNING    <5610.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,668 utils.orbital                  WARNING    <5615.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,669 utils.orbital                  WARNING    <5615.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,692 utils.orbital                  WARNING    <5660.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,694 utils.orbital                  WARNING    <5660.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,713 utils.orbital                  WARNING    <5670.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,715 utils.orbital                  WARNING    <5670.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,738 utils.orbital                  WARNING    <5700.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,740 utils.orbital                  WARNING    <5700.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,758 utils.orbital                  WARNING    <5730.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,759 utils.orbital                  WARNING    <5730.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,774 utils.orbital                  WARNING    <5740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,776 utils.orbital                  WARNING    <5740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,794 utils.orbital                  WARNING    <5750.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,795 utils.orbital                  WARNING    <5750.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,818 utils.orbital                  WARNING    <5775.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,819 utils.orbital                  WARNING    <5775.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,833 utils.orbital                  WARNING    <5780.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,834 utils.orbital                  WARNING    <5780.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,855 utils.orbital                  WARNING    <5820.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,857 utils.orbital                  WARNING    <5820.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,883 utils.orbital                  WARNING    <5860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,884 utils.orbital                  WARNING    <5860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,900 utils.orbital                  WARNING    <5870.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,901 utils.orbital                  WARNING    <5870.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,932 utils.orbital                  WARNING    <5925.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,934 utils.orbital                  WARNING    <5925.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,952 utils.orbital                  WARNING    <5940.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,954 utils.orbital                  WARNING    <5940.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,970 utils.orbital                  WARNING    <5950.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,972 utils.orbital                  WARNING    <5950.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,991 utils.orbital                  WARNING    <5970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:38,993 utils.orbital                  WARNING    <5970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,013 utils.orbital                  WARNING    <5995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,015 utils.orbital                  WARNING    <5995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,048 utils.orbital                  WARNING    <6050.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,049 utils.orbital                  WARNING    <6050.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,063 utils.orbital                  WARNING    <6060.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,065 utils.orbital                  WARNING    <6060.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,082 utils.orbital                  WARNING    <6075.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,084 utils.orbital                  WARNING    <6075.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,107 utils.orbital                  WARNING    <6120.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,108 utils.orbital                  WARNING    <6120.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,124 utils.orbital                  WARNING    <6130.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,125 utils.orbital                  WARNING    <6130.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,141 utils.orbital                  WARNING    <6140.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,142 utils.orbital                  WARNING    <6140.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,164 utils.orbital                  WARNING    <6170.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,165 utils.orbital                  WARNING    <6170.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,182 utils.orbital                  WARNING    <6175.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,183 utils.orbital                  WARNING    <6175.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,217 utils.orbital                  WARNING    <6270.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,218 utils.orbital                  WARNING    <6270.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,238 utils.orbital                  WARNING    <6290.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,239 utils.orbital                  WARNING    <6290.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,253 utils.orbital                  WARNING    <6295.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,254 utils.orbital                  WARNING    <6295.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,275 utils.orbital                  WARNING    <6320.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,276 utils.orbital                  WARNING    <6320.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,294 utils.orbital                  WARNING    <6340.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,295 utils.orbital                  WARNING    <6340.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,324 utils.orbital                  WARNING    <6390.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,326 utils.orbital                  WARNING    <6390.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,345 utils.orbital                  WARNING    <6410.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,346 utils.orbital                  WARNING    <6410.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,371 utils.orbital                  WARNING    <6470.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,372 utils.orbital                  WARNING    <6470.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,389 utils.orbital                  WARNING    <6490.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,391 utils.orbital                  WARNING    <6490.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,409 utils.orbital                  WARNING    <6515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,410 utils.orbital                  WARNING    <6515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,429 utils.orbital                  WARNING    <6535.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,431 utils.orbital                  WARNING    <6535.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,457 utils.orbital                  WARNING    <6580.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,458 utils.orbital                  WARNING    <6580.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,475 utils.orbital                  WARNING    <6590.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,476 utils.orbital                  WARNING    <6590.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,493 utils.orbital                  WARNING    <6595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,494 utils.orbital                  WARNING    <6595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,519 utils.orbital                  WARNING    <6640.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,520 utils.orbital                  WARNING    <6640.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,539 utils.orbital                  WARNING    <6660.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,540 utils.orbital                  WARNING    <6660.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,561 utils.orbital                  WARNING    <6710.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,562 utils.orbital                  WARNING    <6710.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,576 utils.orbital                  WARNING    <6720.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,577 utils.orbital                  WARNING    <6720.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,593 utils.orbital                  WARNING    <6740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,594 utils.orbital                  WARNING    <6740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,607 utils.orbital                  WARNING    <6745.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,608 utils.orbital                  WARNING    <6745.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,630 utils.orbital                  WARNING    <6800.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,631 utils.orbital                  WARNING    <6800.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,651 utils.orbital                  WARNING    <6820.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,652 utils.orbital                  WARNING    <6820.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,672 utils.orbital                  WARNING    <6860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,674 utils.orbital                  WARNING    <6860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,686 utils.orbital                  WARNING    <6865.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,688 utils.orbital                  WARNING    <6865.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,713 utils.orbital                  WARNING    <6940.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,714 utils.orbital                  WARNING    <6940.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,727 utils.orbital                  WARNING    <6945.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,728 utils.orbital                  WARNING    <6945.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,744 utils.orbital                  WARNING    <6950.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,745 utils.orbital                  WARNING    <6950.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,766 utils.orbital                  WARNING    <6985.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,767 utils.orbital                  WARNING    <6985.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,783 utils.orbital                  WARNING    <6995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,785 utils.orbital                  WARNING    <6995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,806 utils.orbital                  WARNING    <7025.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,808 utils.orbital                  WARNING    <7025.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,835 utils.orbital                  WARNING    <7090.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,836 utils.orbital                  WARNING    <7090.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,859 utils.orbital                  WARNING    <7135.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,860 utils.orbital                  WARNING    <7135.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,877 utils.orbital                  WARNING    <7145.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,879 utils.orbital                  WARNING    <7145.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,908 utils.orbital                  WARNING    <7215.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,909 utils.orbital                  WARNING    <7215.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,926 utils.orbital                  WARNING    <7225.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,927 utils.orbital                  WARNING    <7225.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,945 utils.orbital                  WARNING    <7240.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,946 utils.orbital                  WARNING    <7240.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,973 utils.orbital                  WARNING    <7295.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,974 utils.orbital                  WARNING    <7295.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,996 utils.orbital                  WARNING    <7340.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:39,997 utils.orbital                  WARNING    <7340.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,017 utils.orbital                  WARNING    <7360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,018 utils.orbital                  WARNING    <7360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,038 utils.orbital                  WARNING    <7365.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,039 utils.orbital                  WARNING    <7365.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,055 utils.orbital                  WARNING    <7375.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,056 utils.orbital                  WARNING    <7375.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,079 utils.orbital                  WARNING    <7420.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,081 utils.orbital                  WARNING    <7420.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,107 utils.orbital                  WARNING    <7455.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,108 utils.orbital                  WARNING    <7455.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,132 utils.orbital                  WARNING    <7485.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,133 utils.orbital                  WARNING    <7485.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,152 utils.orbital                  WARNING    <7500.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,153 utils.orbital                  WARNING    <7500.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,171 utils.orbital                  WARNING    <7510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,173 utils.orbital                  WARNING    <7510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,202 utils.orbital                  WARNING    <7570.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,204 utils.orbital                  WARNING    <7570.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,221 utils.orbital                  WARNING    <7605.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,223 utils.orbital                  WARNING    <7605.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,237 utils.orbital                  WARNING    <7620.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,238 utils.orbital                  WARNING    <7620.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,252 utils.orbital                  WARNING    <7630.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,254 utils.orbital                  WARNING    <7630.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,273 utils.orbital                  WARNING    <7665.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,274 utils.orbital                  WARNING    <7665.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,289 utils.orbital                  WARNING    <7685.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,290 utils.orbital                  WARNING    <7685.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,306 utils.orbital                  WARNING    <7710.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,308 utils.orbital                  WARNING    <7710.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,321 utils.orbital                  WARNING    <7720.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,322 utils.orbital                  WARNING    <7720.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,343 utils.orbital                  WARNING    <7765.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,344 utils.orbital                  WARNING    <7765.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,359 utils.orbital                  WARNING    <7780.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,361 utils.orbital                  WARNING    <7780.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,382 utils.orbital                  WARNING    <7835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,383 utils.orbital                  WARNING    <7835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,399 utils.orbital                  WARNING    <7860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,400 utils.orbital                  WARNING    <7860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,422 utils.orbital                  WARNING    <7915.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,423 utils.orbital                  WARNING    <7915.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,442 utils.orbital                  WARNING    <7955.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,444 utils.orbital                  WARNING    <7955.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,461 utils.orbital                  WARNING    <7980.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:40,462 utils.orbital                  WARNING    <7980.00> Could not find eclipse transitions in next 12000.0 seconds

Trial Progress

Trial name env_runners fault_tolerance learners num_agent_steps_sampled_lifetime num_env_steps_sampled_lifetime num_env_steps_trained_lifetime num_episodes_lifetimeperf timers
PPO_ConstellationTasking-RLlib_9bd6e_00000{'num_agent_steps_sampled_lifetime': {'Scanner-3': 1800, 'Scanner-4': 1568, 'Scanner-1': 1660, 'Scanner-2': 1800}, 'num_module_steps_sampled': {'p0': 2028}, 'num_agent_steps_sampled': {'Scanner-2': 600, 'Scanner-3': 600, 'Scanner-4': 368, 'Scanner-1': 460}, 'num_episodes': 0, 'num_module_steps_sampled_lifetime': {'p0': 6828}, 'num_env_steps_sampled': 600, 'num_env_steps_sampled_lifetime': 2400, 'episode_return_mean': nan, 'episode_return_min': nan, 'episode_return_max': nan}{'num_healthy_workers': 2, 'num_in_flight_async_reqs': 0, 'num_remote_worker_restarts': 0}{'p0': {'entropy': 1.3658850193023682, 'curr_entropy_coeff': 0.0, 'gradients_default_optimizer_global_norm': 0.5901042222976685, 'num_module_steps_trained': 635, 'total_loss': -0.2621704638004303, 'vf_explained_var': -1.0, 'num_non_trainable_parameters': 0.0, 'vf_loss': 0.002870392519980669, 'vf_loss_unclipped': 0.002870392519980669, 'num_trainable_parameters': 8452101.0, 'default_optimizer_learning_rate': 3e-05, 'mean_kl_loss': 0.0, 'policy_loss': -0.26504090428352356}, '__all_modules__': {'total_loss': -0.2621704638004303, 'num_module_steps_trained': 635, 'num_env_steps_trained': 600, 'num_non_trainable_parameters': 0.0, 'num_trainable_parameters': 8452101.0}}{'Scanner-1': 1060, 'Scanner-2': 1200, 'Scanner-3': 1200, 'Scanner-4': 968} 1200 1200 0{'cpu_util_percent': np.float64(38.455555555555556), 'ram_util_percent': np.float64(32.138888888888886)}{'env_runner_sampling_timer': 6.3457458715999975, 'learner_update_timer': 7.0902493486800156, 'synch_weights': 0.017600326200018796, 'synch_env_connectors': 0.007126454379953771}
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,653 utils.orbital                  WARNING    <7995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,654 utils.orbital                  WARNING    <7995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,676 utils.orbital                  WARNING    <8025.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,677 utils.orbital                  WARNING    <8025.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,712 utils.orbital                  WARNING    <8100.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,714 utils.orbital                  WARNING    <8100.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,729 utils.orbital                  WARNING    <8105.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,730 utils.orbital                  WARNING    <8105.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,748 utils.orbital                  WARNING    <8115.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,749 utils.orbital                  WARNING    <8115.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,770 utils.orbital                  WARNING    <8145.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,771 utils.orbital                  WARNING    <8145.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,786 utils.orbital                  WARNING    <8150.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,788 utils.orbital                  WARNING    <8150.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,811 utils.orbital                  WARNING    <8175.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,813 utils.orbital                  WARNING    <8175.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,832 utils.orbital                  WARNING    <8195.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,834 utils.orbital                  WARNING    <8195.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,869 utils.orbital                  WARNING    <8265.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,870 utils.orbital                  WARNING    <8265.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,888 utils.orbital                  WARNING    <8275.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,889 utils.orbital                  WARNING    <8275.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,910 utils.orbital                  WARNING    <8310.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,911 utils.orbital                  WARNING    <8310.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,927 utils.orbital                  WARNING    <8320.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,929 utils.orbital                  WARNING    <8320.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,943 utils.orbital                  WARNING    <8325.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,944 utils.orbital                  WARNING    <8325.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,967 utils.orbital                  WARNING    <8345.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,969 utils.orbital                  WARNING    <8345.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,989 utils.orbital                  WARNING    <8390.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:47,990 utils.orbital                  WARNING    <8390.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,006 utils.orbital                  WARNING    <8400.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,007 utils.orbital                  WARNING    <8400.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,042 utils.orbital                  WARNING    <8470.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,043 utils.orbital                  WARNING    <8470.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,058 utils.orbital                  WARNING    <8475.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,060 utils.orbital                  WARNING    <8475.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,084 utils.orbital                  WARNING    <8510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,085 utils.orbital                  WARNING    <8510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,110 utils.orbital                  WARNING    <8550.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,111 utils.orbital                  WARNING    <8550.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,129 utils.orbital                  WARNING    <8555.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,131 utils.orbital                  WARNING    <8555.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,156 utils.orbital                  WARNING    <8590.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,158 utils.orbital                  WARNING    <8590.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,173 utils.orbital                  WARNING    <8595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,175 utils.orbital                  WARNING    <8595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,197 utils.orbital                  WARNING    <8600.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,199 utils.orbital                  WARNING    <8600.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,224 utils.orbital                  WARNING    <8635.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,226 utils.orbital                  WARNING    <8635.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,248 utils.orbital                  WARNING    <8675.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,250 utils.orbital                  WARNING    <8675.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,268 utils.orbital                  WARNING    <8680.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,270 utils.orbital                  WARNING    <8680.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,293 utils.orbital                  WARNING    <8740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,294 utils.orbital                  WARNING    <8740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,310 utils.orbital                  WARNING    <8755.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,311 utils.orbital                  WARNING    <8755.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,329 utils.orbital                  WARNING    <8785.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,331 utils.orbital                  WARNING    <8785.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,350 utils.orbital                  WARNING    <8800.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,351 utils.orbital                  WARNING    <8800.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,371 utils.orbital                  WARNING    <8830.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,372 utils.orbital                  WARNING    <8830.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,387 utils.orbital                  WARNING    <8835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,388 utils.orbital                  WARNING    <8835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,415 utils.orbital                  WARNING    <8905.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,416 utils.orbital                  WARNING    <8905.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,433 utils.orbital                  WARNING    <8915.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,434 utils.orbital                  WARNING    <8915.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,457 utils.orbital                  WARNING    <8950.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,458 utils.orbital                  WARNING    <8950.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,474 utils.orbital                  WARNING    <8960.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,475 utils.orbital                  WARNING    <8960.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,494 utils.orbital                  WARNING    <8980.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,496 utils.orbital                  WARNING    <8980.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,517 utils.orbital                  WARNING    <8995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,519 utils.orbital                  WARNING    <8995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,542 utils.orbital                  WARNING    <9025.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,543 utils.orbital                  WARNING    <9025.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,564 utils.orbital                  WARNING    <9055.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,565 utils.orbital                  WARNING    <9055.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,585 utils.orbital                  WARNING    <9070.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,586 utils.orbital                  WARNING    <9070.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,603 utils.orbital                  WARNING    <9075.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,605 utils.orbital                  WARNING    <9075.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,618 utils.orbital                  WARNING    <9080.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,619 utils.orbital                  WARNING    <9080.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,643 utils.orbital                  WARNING    <9150.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,645 utils.orbital                  WARNING    <9150.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,659 utils.orbital                  WARNING    <9155.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,660 utils.orbital                  WARNING    <9155.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,679 utils.orbital                  WARNING    <9195.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,680 utils.orbital                  WARNING    <9195.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,694 utils.orbital                  WARNING    <9200.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,695 utils.orbital                  WARNING    <9200.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,708 utils.orbital                  WARNING    <9205.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,709 utils.orbital                  WARNING    <9205.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,728 utils.orbital                  WARNING    <9245.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,729 utils.orbital                  WARNING    <9245.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,754 utils.orbital                  WARNING    <9305.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,755 utils.orbital                  WARNING    <9305.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,771 utils.orbital                  WARNING    <9325.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,772 utils.orbital                  WARNING    <9325.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,788 utils.orbital                  WARNING    <9345.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,789 utils.orbital                  WARNING    <9345.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,802 utils.orbital                  WARNING    <9350.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,803 utils.orbital                  WARNING    <9350.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,823 utils.orbital                  WARNING    <9395.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,825 utils.orbital                  WARNING    <9395.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,842 utils.orbital                  WARNING    <9425.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,844 utils.orbital                  WARNING    <9425.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3012) 2026-09-02 14:50:48,926 sats.satellite.Scanner-4       WARNING    <9955.00> Scanner-4: failed battery_valid check
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,857 utils.orbital                  WARNING    <9430.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,858 utils.orbital                  WARNING    <9430.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,877 utils.orbital                  WARNING    <9470.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,878 utils.orbital                  WARNING    <9470.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,891 utils.orbital                  WARNING    <9475.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,892 utils.orbital                  WARNING    <9475.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,911 utils.orbital                  WARNING    <9510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,912 utils.orbital                  WARNING    <9510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,925 utils.orbital                  WARNING    <9515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,926 utils.orbital                  WARNING    <9515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,953 utils.orbital                  WARNING    <9595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,955 utils.orbital                  WARNING    <9595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,972 utils.orbital                  WARNING    <9620.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,974 utils.orbital                  WARNING    <9620.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,989 utils.orbital                  WARNING    <9640.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:48,990 utils.orbital                  WARNING    <9640.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,006 utils.orbital                  WARNING    <9660.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,008 utils.orbital                  WARNING    <9660.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,024 utils.orbital                  WARNING    <9685.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,026 utils.orbital                  WARNING    <9685.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,044 utils.orbital                  WARNING    <9715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,046 utils.orbital                  WARNING    <9715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,067 utils.orbital                  WARNING    <9740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,068 utils.orbital                  WARNING    <9740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,084 utils.orbital                  WARNING    <9765.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,085 utils.orbital                  WARNING    <9765.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,103 utils.orbital                  WARNING    <9795.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,104 utils.orbital                  WARNING    <9795.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,119 utils.orbital                  WARNING    <9810.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,120 utils.orbital                  WARNING    <9810.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,145 utils.orbital                  WARNING    <9875.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,146 utils.orbital                  WARNING    <9875.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,161 utils.orbital                  WARNING    <9885.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,162 utils.orbital                  WARNING    <9885.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,175 utils.orbital                  WARNING    <9890.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,176 utils.orbital                  WARNING    <9890.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,195 utils.orbital                  WARNING    <9930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,196 utils.orbital                  WARNING    <9930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,213 utils.orbital                  WARNING    <9955.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,214 utils.orbital                  WARNING    <9955.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,229 utils.orbital                  WARNING    <9970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,230 utils.orbital                  WARNING    <9970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,243 utils.orbital                  WARNING    <9975.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,244 utils.orbital                  WARNING    <9975.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,267 utils.orbital                  WARNING    <10035.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,268 utils.orbital                  WARNING    <10035.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,283 utils.orbital                  WARNING    <10050.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,284 utils.orbital                  WARNING    <10050.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,304 utils.orbital                  WARNING    <10095.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,305 utils.orbital                  WARNING    <10095.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,320 utils.orbital                  WARNING    <10115.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,321 utils.orbital                  WARNING    <10115.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,334 utils.orbital                  WARNING    <10120.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,336 utils.orbital                  WARNING    <10120.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,357 utils.orbital                  WARNING    <10170.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,358 utils.orbital                  WARNING    <10170.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,372 utils.orbital                  WARNING    <10175.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,373 utils.orbital                  WARNING    <10175.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,390 utils.orbital                  WARNING    <10200.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,391 utils.orbital                  WARNING    <10200.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,414 utils.orbital                  WARNING    <10265.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,415 utils.orbital                  WARNING    <10265.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,430 utils.orbital                  WARNING    <10280.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,432 utils.orbital                  WARNING    <10280.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,446 utils.orbital                  WARNING    <10290.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,447 utils.orbital                  WARNING    <10290.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,461 utils.orbital                  WARNING    <10295.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,462 utils.orbital                  WARNING    <10295.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,487 utils.orbital                  WARNING    <10360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,488 utils.orbital                  WARNING    <10360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,502 utils.orbital                  WARNING    <10370.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,504 utils.orbital                  WARNING    <10370.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,519 utils.orbital                  WARNING    <10385.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,520 utils.orbital                  WARNING    <10385.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,538 utils.orbital                  WARNING    <10415.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,539 utils.orbital                  WARNING    <10415.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,557 utils.orbital                  WARNING    <10445.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,558 utils.orbital                  WARNING    <10445.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,575 utils.orbital                  WARNING    <10460.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,576 utils.orbital                  WARNING    <10460.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,589 utils.orbital                  WARNING    <10465.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,591 utils.orbital                  WARNING    <10465.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,609 utils.orbital                  WARNING    <10480.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,611 utils.orbital                  WARNING    <10480.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,630 utils.orbital                  WARNING    <10505.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,631 utils.orbital                  WARNING    <10505.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,645 utils.orbital                  WARNING    <10510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,646 utils.orbital                  WARNING    <10510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,662 utils.orbital                  WARNING    <10525.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,663 utils.orbital                  WARNING    <10525.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,685 utils.orbital                  WARNING    <10555.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,686 utils.orbital                  WARNING    <10555.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,701 utils.orbital                  WARNING    <10570.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,703 utils.orbital                  WARNING    <10570.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,717 utils.orbital                  WARNING    <10585.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,719 utils.orbital                  WARNING    <10585.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,733 utils.orbital                  WARNING    <10595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,734 utils.orbital                  WARNING    <10595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,753 utils.orbital                  WARNING    <10635.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,754 utils.orbital                  WARNING    <10635.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,778 utils.orbital                  WARNING    <10690.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,780 utils.orbital                  WARNING    <10690.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,801 utils.orbital                  WARNING    <10715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,803 utils.orbital                  WARNING    <10715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,820 utils.orbital                  WARNING    <10735.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,822 utils.orbital                  WARNING    <10735.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,840 utils.orbital                  WARNING    <10745.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,841 utils.orbital                  WARNING    <10745.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,863 utils.orbital                  WARNING    <10770.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,865 utils.orbital                  WARNING    <10770.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,888 utils.orbital                  WARNING    <10815.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,890 utils.orbital                  WARNING    <10815.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,913 utils.orbital                  WARNING    <10850.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,914 utils.orbital                  WARNING    <10850.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,936 utils.orbital                  WARNING    <10865.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,938 utils.orbital                  WARNING    <10865.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,958 utils.orbital                  WARNING    <10895.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,960 utils.orbital                  WARNING    <10895.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,987 utils.orbital                  WARNING    <10930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:49,989 utils.orbital                  WARNING    <10930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,006 utils.orbital                  WARNING    <10940.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,008 utils.orbital                  WARNING    <10940.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,024 utils.orbital                  WARNING    <10945.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,025 utils.orbital                  WARNING    <10945.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,050 utils.orbital                  WARNING    <10975.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,052 utils.orbital                  WARNING    <10975.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,071 utils.orbital                  WARNING    <10990.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,072 utils.orbital                  WARNING    <10990.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,093 utils.orbital                  WARNING    <11015.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,094 utils.orbital                  WARNING    <11015.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,117 utils.orbital                  WARNING    <11060.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,119 utils.orbital                  WARNING    <11060.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,137 utils.orbital                  WARNING    <11070.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,138 utils.orbital                  WARNING    <11070.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,159 utils.orbital                  WARNING    <11095.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,160 utils.orbital                  WARNING    <11095.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,184 utils.orbital                  WARNING    <11150.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,186 utils.orbital                  WARNING    <11150.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,218 utils.orbital                  WARNING    <11210.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,219 utils.orbital                  WARNING    <11210.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,233 utils.orbital                  WARNING    <11215.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,234 utils.orbital                  WARNING    <11215.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,257 utils.orbital                  WARNING    <11270.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,259 utils.orbital                  WARNING    <11270.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,285 utils.orbital                  WARNING    <11315.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,287 utils.orbital                  WARNING    <11315.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,306 utils.orbital                  WARNING    <11330.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,307 utils.orbital                  WARNING    <11330.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,323 utils.orbital                  WARNING    <11335.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,325 utils.orbital                  WARNING    <11335.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,347 utils.orbital                  WARNING    <11360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,349 utils.orbital                  WARNING    <11360.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,369 utils.orbital                  WARNING    <11395.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,371 utils.orbital                  WARNING    <11395.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,401 utils.orbital                  WARNING    <11450.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,403 utils.orbital                  WARNING    <11450.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,418 utils.orbital                  WARNING    <11455.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,420 utils.orbital                  WARNING    <11455.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,452 utils.orbital                  WARNING    <11510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,454 utils.orbital                  WARNING    <11510.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,471 utils.orbital                  WARNING    <11515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,473 utils.orbital                  WARNING    <11515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,488 utils.orbital                  WARNING    <11530.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,489 utils.orbital                  WARNING    <11530.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,515 utils.orbital                  WARNING    <11605.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,517 utils.orbital                  WARNING    <11605.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,534 utils.orbital                  WARNING    <11630.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,535 utils.orbital                  WARNING    <11630.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,551 utils.orbital                  WARNING    <11650.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,552 utils.orbital                  WARNING    <11650.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,568 utils.orbital                  WARNING    <11665.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,569 utils.orbital                  WARNING    <11665.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,589 utils.orbital                  WARNING    <11710.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,590 utils.orbital                  WARNING    <11710.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,607 utils.orbital                  WARNING    <11730.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,608 utils.orbital                  WARNING    <11730.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,628 utils.orbital                  WARNING    <11770.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,629 utils.orbital                  WARNING    <11770.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,644 utils.orbital                  WARNING    <11780.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,645 utils.orbital                  WARNING    <11780.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,670 utils.orbital                  WARNING    <11850.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,671 utils.orbital                  WARNING    <11850.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,686 utils.orbital                  WARNING    <11860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,687 utils.orbital                  WARNING    <11860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,708 utils.orbital                  WARNING    <11905.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,709 utils.orbital                  WARNING    <11905.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,726 utils.orbital                  WARNING    <11930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,727 utils.orbital                  WARNING    <11930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,743 utils.orbital                  WARNING    <11950.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,744 utils.orbital                  WARNING    <11950.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,760 utils.orbital                  WARNING    <11970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,761 utils.orbital                  WARNING    <11970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,776 utils.orbital                  WARNING    <11980.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,777 utils.orbital                  WARNING    <11980.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,798 utils.orbital                  WARNING    <12030.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,799 utils.orbital                  WARNING    <12030.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,816 utils.orbital                  WARNING    <12050.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,817 utils.orbital                  WARNING    <12050.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,831 utils.orbital                  WARNING    <12060.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,832 utils.orbital                  WARNING    <12060.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,851 utils.orbital                  WARNING    <12075.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,853 utils.orbital                  WARNING    <12075.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,877 utils.orbital                  WARNING    <12120.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,879 utils.orbital                  WARNING    <12120.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,900 utils.orbital                  WARNING    <12165.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,901 utils.orbital                  WARNING    <12165.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,918 utils.orbital                  WARNING    <12170.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,919 utils.orbital                  WARNING    <12170.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,947 utils.orbital                  WARNING    <12245.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,949 utils.orbital                  WARNING    <12245.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,981 utils.orbital                  WARNING    <12320.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,983 utils.orbital                  WARNING    <12320.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,008 utils.orbital                  WARNING    <12365.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,010 utils.orbital                  WARNING    <12365.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,040 utils.orbital                  WARNING    <12440.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,041 utils.orbital                  WARNING    <12440.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,055 utils.orbital                  WARNING    <12445.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,056 utils.orbital                  WARNING    <12445.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,077 utils.orbital                  WARNING    <12470.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,078 utils.orbital                  WARNING    <12470.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,120 utils.orbital                  WARNING    <12590.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,121 utils.orbital                  WARNING    <12590.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,134 utils.orbital                  WARNING    <12595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,136 utils.orbital                  WARNING    <12595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,169 utils.orbital                  WARNING    <12670.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,170 utils.orbital                  WARNING    <12670.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,184 utils.orbital                  WARNING    <12675.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,186 utils.orbital                  WARNING    <12675.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,208 utils.orbital                  WARNING    <12740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,210 utils.orbital                  WARNING    <12740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,226 utils.orbital                  WARNING    <12755.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,227 utils.orbital                  WARNING    <12755.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,247 utils.orbital                  WARNING    <12785.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,248 utils.orbital                  WARNING    <12785.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,272 utils.orbital                  WARNING    <12820.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,274 utils.orbital                  WARNING    <12820.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,290 utils.orbital                  WARNING    <12835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,291 utils.orbital                  WARNING    <12835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,311 utils.orbital                  WARNING    <12865.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,312 utils.orbital                  WARNING    <12865.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,341 utils.orbital                  WARNING    <12915.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,343 utils.orbital                  WARNING    <12915.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,377 utils.orbital                  WARNING    <12995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,378 utils.orbital                  WARNING    <12995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,393 utils.orbital                  WARNING    <13015.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,395 utils.orbital                  WARNING    <13015.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,415 utils.orbital                  WARNING    <13060.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,417 utils.orbital                  WARNING    <13060.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,437 utils.orbital                  WARNING    <13095.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,439 utils.orbital                  WARNING    <13095.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,459 utils.orbital                  WARNING    <13115.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,461 utils.orbital                  WARNING    <13115.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,490 utils.orbital                  WARNING    <13175.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,491 utils.orbital                  WARNING    <13175.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,506 utils.orbital                  WARNING    <13180.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,508 utils.orbital                  WARNING    <13180.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,531 utils.orbital                  WARNING    <13220.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,533 utils.orbital                  WARNING    <13220.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,556 utils.orbital                  WARNING    <13260.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,557 utils.orbital                  WARNING    <13260.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,573 utils.orbital                  WARNING    <13265.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,575 utils.orbital                  WARNING    <13265.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,603 utils.orbital                  WARNING    <13345.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,605 utils.orbital                  WARNING    <13345.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,634 utils.orbital                  WARNING    <13410.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,635 utils.orbital                  WARNING    <13410.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,649 utils.orbital                  WARNING    <13415.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,651 utils.orbital                  WARNING    <13415.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,679 utils.orbital                  WARNING    <13455.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,681 utils.orbital                  WARNING    <13455.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,697 utils.orbital                  WARNING    <13465.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,699 utils.orbital                  WARNING    <13465.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,721 utils.orbital                  WARNING    <13500.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,723 utils.orbital                  WARNING    <13500.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,740 utils.orbital                  WARNING    <13535.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,742 utils.orbital                  WARNING    <13535.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,761 utils.orbital                  WARNING    <13580.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,762 utils.orbital                  WARNING    <13580.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,779 utils.orbital                  WARNING    <13615.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,781 utils.orbital                  WARNING    <13615.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,793 utils.orbital                  WARNING    <13620.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,794 utils.orbital                  WARNING    <13620.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,823 utils.orbital                  WARNING    <13730.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,825 utils.orbital                  WARNING    <13730.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,840 utils.orbital                  WARNING    <13735.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,841 utils.orbital                  WARNING    <13735.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,856 utils.orbital                  WARNING    <13740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,857 utils.orbital                  WARNING    <13740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,881 utils.orbital                  WARNING    <13810.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,882 utils.orbital                  WARNING    <13810.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,895 utils.orbital                  WARNING    <13820.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,896 utils.orbital                  WARNING    <13820.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,915 utils.orbital                  WARNING    <13865.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,917 utils.orbital                  WARNING    <13865.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,931 utils.orbital                  WARNING    <13885.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,933 utils.orbital                  WARNING    <13885.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,953 utils.orbital                  WARNING    <13930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,954 utils.orbital                  WARNING    <13930.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,975 utils.orbital                  WARNING    <13985.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:51,976 utils.orbital                  WARNING    <13985.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,003 utils.orbital                  WARNING    <14080.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,004 utils.orbital                  WARNING    <14080.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,020 utils.orbital                  WARNING    <14105.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,021 utils.orbital                  WARNING    <14105.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,042 utils.orbital                  WARNING    <14150.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,043 utils.orbital                  WARNING    <14150.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,068 utils.orbital                  WARNING    <14230.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,069 utils.orbital                  WARNING    <14230.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,089 utils.orbital                  WARNING    <14275.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,090 utils.orbital                  WARNING    <14275.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,105 utils.orbital                  WARNING    <14300.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,106 utils.orbital                  WARNING    <14300.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,127 utils.orbital                  WARNING    <14355.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,128 utils.orbital                  WARNING    <14355.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,145 utils.orbital                  WARNING    <14380.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,146 utils.orbital                  WARNING    <14380.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,162 utils.orbital                  WARNING    <14395.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,163 utils.orbital                  WARNING    <14395.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,184 utils.orbital                  WARNING    <14425.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,185 utils.orbital                  WARNING    <14425.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,214 utils.orbital                  WARNING    <14475.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,215 utils.orbital                  WARNING    <14475.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,234 utils.orbital                  WARNING    <14505.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,236 utils.orbital                  WARNING    <14505.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,255 utils.orbital                  WARNING    <14520.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,256 utils.orbital                  WARNING    <14520.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,273 utils.orbital                  WARNING    <14545.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,274 utils.orbital                  WARNING    <14545.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,287 utils.orbital                  WARNING    <14550.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,289 utils.orbital                  WARNING    <14550.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,310 utils.orbital                  WARNING    <14595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,312 utils.orbital                  WARNING    <14595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,325 utils.orbital                  WARNING    <14600.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,327 utils.orbital                  WARNING    <14600.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,364 utils.orbital                  WARNING    <14695.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,365 utils.orbital                  WARNING    <14695.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,383 utils.orbital                  WARNING    <14715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,385 utils.orbital                  WARNING    <14715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,403 utils.orbital                  WARNING    <14740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,405 utils.orbital                  WARNING    <14740.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,422 utils.orbital                  WARNING    <14750.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,423 utils.orbital                  WARNING    <14750.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,450 utils.orbital                  WARNING    <14820.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,451 utils.orbital                  WARNING    <14820.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,467 utils.orbital                  WARNING    <14830.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,469 utils.orbital                  WARNING    <14830.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,482 utils.orbital                  WARNING    <14835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,483 utils.orbital                  WARNING    <14835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,516 utils.orbital                  WARNING    <14910.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,518 utils.orbital                  WARNING    <14910.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,534 utils.orbital                  WARNING    <14915.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,536 utils.orbital                  WARNING    <14915.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,558 utils.orbital                  WARNING    <14970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,559 utils.orbital                  WARNING    <14970.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,574 utils.orbital                  WARNING    <14990.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,575 utils.orbital                  WARNING    <14990.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,587 utils.orbital                  WARNING    <14995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,588 utils.orbital                  WARNING    <14995.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,603 utils.orbital                  WARNING    <15015.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,604 utils.orbital                  WARNING    <15015.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,619 utils.orbital                  WARNING    <15035.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,620 utils.orbital                  WARNING    <15035.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,636 utils.orbital                  WARNING    <15060.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,637 utils.orbital                  WARNING    <15060.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,653 utils.orbital                  WARNING    <15075.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,655 utils.orbital                  WARNING    <15075.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,668 utils.orbital                  WARNING    <15080.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,669 utils.orbital                  WARNING    <15080.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,691 utils.orbital                  WARNING    <15140.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,692 utils.orbital                  WARNING    <15140.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,707 utils.orbital                  WARNING    <15160.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,708 utils.orbital                  WARNING    <15160.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,725 utils.orbital                  WARNING    <15195.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,726 utils.orbital                  WARNING    <15195.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,739 utils.orbital                  WARNING    <15205.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,740 utils.orbital                  WARNING    <15205.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,756 utils.orbital                  WARNING    <15220.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,757 utils.orbital                  WARNING    <15220.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,780 utils.orbital                  WARNING    <15285.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,781 utils.orbital                  WARNING    <15285.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,795 utils.orbital                  WARNING    <15300.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,796 utils.orbital                  WARNING    <15300.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,810 utils.orbital                  WARNING    <15315.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,811 utils.orbital                  WARNING    <15315.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,831 utils.orbital                  WARNING    <15365.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,832 utils.orbital                  WARNING    <15365.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,847 utils.orbital                  WARNING    <15380.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,848 utils.orbital                  WARNING    <15380.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,868 utils.orbital                  WARNING    <15425.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,870 utils.orbital                  WARNING    <15425.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,888 utils.orbital                  WARNING    <15465.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,889 utils.orbital                  WARNING    <15465.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,909 utils.orbital                  WARNING    <15515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,910 utils.orbital                  WARNING    <15515.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,927 utils.orbital                  WARNING    <15545.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,928 utils.orbital                  WARNING    <15545.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,947 utils.orbital                  WARNING    <15585.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,948 utils.orbital                  WARNING    <15585.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,968 utils.orbital                  WARNING    <15630.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,969 utils.orbital                  WARNING    <15630.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,982 utils.orbital                  WARNING    <15635.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:52,983 utils.orbital                  WARNING    <15635.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,000 utils.orbital                  WARNING    <15665.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,001 utils.orbital                  WARNING    <15665.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,016 utils.orbital                  WARNING    <15680.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,017 utils.orbital                  WARNING    <15680.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,034 utils.orbital                  WARNING    <15710.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,035 utils.orbital                  WARNING    <15710.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,056 utils.orbital                  WARNING    <15760.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,057 utils.orbital                  WARNING    <15760.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,077 utils.orbital                  WARNING    <15790.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,078 utils.orbital                  WARNING    <15790.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,096 utils.orbital                  WARNING    <15815.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,098 utils.orbital                  WARNING    <15815.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,115 utils.orbital                  WARNING    <15835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,117 utils.orbital                  WARNING    <15835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,132 utils.orbital                  WARNING    <15840.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,133 utils.orbital                  WARNING    <15840.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,152 utils.orbital                  WARNING    <15860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,154 utils.orbital                  WARNING    <15860.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,176 utils.orbital                  WARNING    <15905.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,177 utils.orbital                  WARNING    <15905.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,207 utils.orbital                  WARNING    <15985.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,208 utils.orbital                  WARNING    <15985.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,223 utils.orbital                  WARNING    <15990.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,225 utils.orbital                  WARNING    <15990.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,245 utils.orbital                  WARNING    <16025.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,246 utils.orbital                  WARNING    <16025.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,258 utils.orbital                  WARNING    <16030.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,259 utils.orbital                  WARNING    <16030.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,286 utils.orbital                  WARNING    <16075.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,287 utils.orbital                  WARNING    <16075.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,306 utils.orbital                  WARNING    <16110.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,308 utils.orbital                  WARNING    <16110.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,329 utils.orbital                  WARNING    <16145.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,331 utils.orbital                  WARNING    <16145.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,358 utils.orbital                  WARNING    <16195.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,359 utils.orbital                  WARNING    <16195.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,379 utils.orbital                  WARNING    <16230.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,381 utils.orbital                  WARNING    <16230.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,408 utils.orbital                  WARNING    <16275.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,409 utils.orbital                  WARNING    <16275.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,427 utils.orbital                  WARNING    <16295.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,428 utils.orbital                  WARNING    <16295.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,450 utils.orbital                  WARNING    <16355.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,451 utils.orbital                  WARNING    <16355.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,466 utils.orbital                  WARNING    <16380.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,468 utils.orbital                  WARNING    <16380.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,490 utils.orbital                  WARNING    <16445.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,491 utils.orbital                  WARNING    <16445.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,512 utils.orbital                  WARNING    <16505.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,514 utils.orbital                  WARNING    <16505.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,529 utils.orbital                  WARNING    <16530.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,530 utils.orbital                  WARNING    <16530.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,552 utils.orbital                  WARNING    <16595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,553 utils.orbital                  WARNING    <16595.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,567 utils.orbital                  WARNING    <16610.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,568 utils.orbital                  WARNING    <16610.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,587 utils.orbital                  WARNING    <16655.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,588 utils.orbital                  WARNING    <16655.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,609 utils.orbital                  WARNING    <16715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,610 utils.orbital                  WARNING    <16715.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,623 utils.orbital                  WARNING    <16730.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,625 utils.orbital                  WARNING    <16730.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,636 utils.orbital                  WARNING    <16735.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,637 utils.orbital                  WARNING    <16735.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,661 utils.orbital                  WARNING    <16810.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,663 utils.orbital                  WARNING    <16810.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,676 utils.orbital                  WARNING    <16815.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,677 utils.orbital                  WARNING    <16815.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,692 utils.orbital                  WARNING    <16835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,693 utils.orbital                  WARNING    <16835.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,707 utils.orbital                  WARNING    <16855.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,708 utils.orbital                  WARNING    <16855.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,726 utils.orbital                  WARNING    <16895.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,728 utils.orbital                  WARNING    <16895.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,749 utils.orbital                  WARNING    <16955.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,750 utils.orbital                  WARNING    <16955.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,770 utils.orbital                  WARNING    <17005.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,771 utils.orbital                  WARNING    <17005.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,785 utils.orbital                  WARNING    <17015.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,786 utils.orbital                  WARNING    <17015.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,809 utils.orbital                  WARNING    <17085.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,810 utils.orbital                  WARNING    <17085.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,823 utils.orbital                  WARNING    <17095.00> Could not find eclipse transitions in next 12000.0 seconds
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:53,824 utils.orbital                  WARNING    <17095.00> Could not find eclipse transitions in next 12000.0 seconds
2026-09-02 14:51:00,721 INFO tune.py:1009 -- Wrote the latest version of all result files and experiment state to '/home/runner/ray_results/PPO_2026-09-02_14-50-15' in 0.0629s.
2026-09-02 14:51:01,358 INFO tune.py:1041 -- Total run time: 45.70 seconds (44.87 seconds for the tuning loop).
(MultiAgentEnvRunner pid=3013) 2026-09-02 14:50:50,897 sats.satellite.Scanner-1       WARNING    <12165.00> Scanner-1: failed battery_valid check